diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -102,6 +102,10 @@ ifeq ("$(origin O)", "command line") | |||
102 | KBUILD_OUTPUT := $(O) | 102 | KBUILD_OUTPUT := $(O) |
103 | endif | 103 | endif |
104 | 104 | ||
105 | ifeq ("$(origin W)", "command line") | ||
106 | export KBUILD_ENABLE_EXTRA_GCC_CHECKS := 1 | ||
107 | endif | ||
108 | |||
105 | # That's our default target when none is given on the command line | 109 | # That's our default target when none is given on the command line |
106 | PHONY := _all | 110 | PHONY := _all |
107 | _all: | 111 | _all: |
@@ -1262,6 +1266,7 @@ help: | |||
1262 | @echo ' make O=dir [targets] Locate all output files in "dir", including .config' | 1266 | @echo ' make O=dir [targets] Locate all output files in "dir", including .config' |
1263 | @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)' | 1267 | @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)' |
1264 | @echo ' make C=2 [targets] Force check of all c source with $$CHECK' | 1268 | @echo ' make C=2 [targets] Force check of all c source with $$CHECK' |
1269 | @echo ' make W=1 [targets] Enable extra gcc checks' | ||
1265 | @echo '' | 1270 | @echo '' |
1266 | @echo 'Execute "make" or "make all" to build all targets marked with [*] ' | 1271 | @echo 'Execute "make" or "make all" to build all targets marked with [*] ' |
1267 | @echo 'For further info see the ./README file' | 1272 | @echo 'For further info see the ./README file' |