diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-20 21:13:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-20 21:13:09 -0400 |
commit | b87a2d3e3147bd140da2eae584772c353d11421b (patch) | |
tree | b07334f4a0b6bef83be8f061e76694c267d5fa34 /Makefile | |
parent | 53a94c7d55dceb73aab2876afce4c563bc9111fe (diff) | |
parent | ab94e4666d5cee0e393367671eeab4111105bffb (diff) |
Merge branch 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6
* 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6:
scripts/extract-ikconfig: add xz compression support
kbuild: add GNU GLOBAL tags generation
setlocalversion: update mercurial tag parsing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -421,7 +421,7 @@ endif | |||
421 | # of make so .config is not included in this case either (for *config). | 421 | # of make so .config is not included in this case either (for *config). |
422 | 422 | ||
423 | no-dot-config-targets := clean mrproper distclean \ | 423 | no-dot-config-targets := clean mrproper distclean \ |
424 | cscope TAGS tags help %docs check% coccicheck \ | 424 | cscope gtags TAGS tags help %docs check% coccicheck \ |
425 | include/linux/version.h headers_% \ | 425 | include/linux/version.h headers_% \ |
426 | kernelversion %src-pkg | 426 | kernelversion %src-pkg |
427 | 427 | ||
@@ -1135,7 +1135,7 @@ CLEAN_FILES += vmlinux System.map \ | |||
1135 | MRPROPER_DIRS += include/config usr/include include/generated | 1135 | MRPROPER_DIRS += include/config usr/include include/generated |
1136 | MRPROPER_FILES += .config .config.old .version .old_version \ | 1136 | MRPROPER_FILES += .config .config.old .version .old_version \ |
1137 | include/linux/version.h \ | 1137 | include/linux/version.h \ |
1138 | Module.symvers tags TAGS cscope* | 1138 | Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS |
1139 | 1139 | ||
1140 | # clean - Delete most, but leave enough to build external modules | 1140 | # clean - Delete most, but leave enough to build external modules |
1141 | # | 1141 | # |
@@ -1222,6 +1222,7 @@ help: | |||
1222 | @echo ' modules_prepare - Set up for building external modules' | 1222 | @echo ' modules_prepare - Set up for building external modules' |
1223 | @echo ' tags/TAGS - Generate tags file for editors' | 1223 | @echo ' tags/TAGS - Generate tags file for editors' |
1224 | @echo ' cscope - Generate cscope index' | 1224 | @echo ' cscope - Generate cscope index' |
1225 | @echo ' gtags - Generate GNU GLOBAL index' | ||
1225 | @echo ' kernelrelease - Output the release version string' | 1226 | @echo ' kernelrelease - Output the release version string' |
1226 | @echo ' kernelversion - Output the version stored in Makefile' | 1227 | @echo ' kernelversion - Output the version stored in Makefile' |
1227 | @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \ | 1228 | @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \ |
@@ -1380,7 +1381,7 @@ clean: $(clean-dirs) | |||
1380 | quiet_cmd_tags = GEN $@ | 1381 | quiet_cmd_tags = GEN $@ |
1381 | cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@ | 1382 | cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@ |
1382 | 1383 | ||
1383 | tags TAGS cscope: FORCE | 1384 | tags TAGS cscope gtags: FORCE |
1384 | $(call cmd,tags) | 1385 | $(call cmd,tags) |
1385 | 1386 | ||
1386 | # Scripts to check various things for consistency | 1387 | # Scripts to check various things for consistency |