aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMichal Marek <mmarek@suse.cz>2010-06-11 18:01:31 -0400
committerMichal Marek <mmarek@suse.cz>2010-06-11 18:01:31 -0400
commit6ff21517c001f38b02393ad9dc92decbaee209fa (patch)
tree7cd980dd3d869613669847ccda444459f6fdf0e4 /Makefile
parentb396aa03084b51f6822052a8070703287f198360 (diff)
parent82c4340b0a3ccf090ef38fa111363018cf0594c8 (diff)
Merge branch 'kbuild/coccinelle' into kbuild/misc
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 46040e887d83..8acf7edad82c 100644
--- a/Makefile
+++ b/Makefile
@@ -412,7 +412,7 @@ endif
412# of make so .config is not included in this case either (for *config). 412# of make so .config is not included in this case either (for *config).
413 413
414no-dot-config-targets := clean mrproper distclean \ 414no-dot-config-targets := clean mrproper distclean \
415 cscope TAGS tags help %docs check% \ 415 cscope TAGS tags help %docs check% coccicheck \
416 include/linux/version.h headers_% \ 416 include/linux/version.h headers_% \
417 kernelrelease kernelversion 417 kernelrelease kernelversion
418 418
@@ -1279,8 +1279,9 @@ help:
1279 @echo ' includecheck - Check for duplicate included header files' 1279 @echo ' includecheck - Check for duplicate included header files'
1280 @echo ' export_report - List the usages of all exported symbols' 1280 @echo ' export_report - List the usages of all exported symbols'
1281 @echo ' headers_check - Sanity check on exported headers' 1281 @echo ' headers_check - Sanity check on exported headers'
1282 @echo ' headerdep - Detect inclusion cycles in headers'; \ 1282 @echo ' headerdep - Detect inclusion cycles in headers'
1283 echo '' 1283 @$(MAKE) -f $(srctree)/scripts/Makefile.help checker-help
1284 @echo ''
1284 @echo 'Kernel packaging:' 1285 @echo 'Kernel packaging:'
1285 @$(MAKE) $(build)=$(package-dir) help 1286 @$(MAKE) $(build)=$(package-dir) help
1286 @echo '' 1287 @echo ''
@@ -1439,6 +1440,9 @@ versioncheck:
1439 -name '*.[hcS]' -type f -print | sort \ 1440 -name '*.[hcS]' -type f -print | sort \
1440 | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl 1441 | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl
1441 1442
1443coccicheck:
1444 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/$@
1445
1442namespacecheck: 1446namespacecheck:
1443 $(PERL) $(srctree)/scripts/namespace.pl 1447 $(PERL) $(srctree)/scripts/namespace.pl
1444 1448