diff options
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 |