From efd6c7ccc9ec26451383517c009ed37fd813bce9 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 6 Nov 2011 08:16:06 +0000 Subject: [PATCH] Add missing static keywords to make(1) --- usr.bin/make/globals.h | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/make/globals.h b/usr.bin/make/globals.h index 06c302e2aeb..e3ce51b8905 100644 --- a/usr.bin/make/globals.h +++ b/usr.bin/make/globals.h @@ -75,6 +75,7 @@ extern Boolean beSilent; /* True if should print no commands */ extern Boolean beVerbose; /* True if should print extra cruft */ extern Boolean beQuiet; /* True if want quiet headers with -j */ extern Boolean noExecute; /* True if should execute nothing */ +extern Boolean printGraphOnly; /* -p flag */ extern Boolean allPrecious; /* True if every target is precious */ extern Boolean is_posix; /* .POSIX target seen */ extern Boolean mfAutoDeps; /* .MAKEFILEDEPS target seen */