aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.(none)>2005-07-28 17:11:34 -0400
committerSam Ravnborg <sam@mars.(none)>2005-07-28 17:11:34 -0400
commit66d609ec8a4464b5fbe7a0723e3958b98c95991a (patch)
tree5e888e7ffbd70a82c9345ea51d83cb163db27d5d /Makefile
parent49490571bcfe24d279a66ba24198e8ba299fe58f (diff)
kbuild: fix make TAGS (for emacs use)
From: bongiojp@clarkson.edu <Jeremy Bongio> make TAGS does not make source code tags for emacs. It instead returns an error than "etags -" isn't valid. The problem is easily remedied. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 06995fe7f57c..d01b004a2a0e 100644
--- a/Makefile
+++ b/Makefile
@@ -1203,9 +1203,15 @@ cscope: FORCE
1203 $(call cmd,cscope) 1203 $(call cmd,cscope)
1204 1204
1205quiet_cmd_TAGS = MAKE $@ 1205quiet_cmd_TAGS = MAKE $@
1206cmd_TAGS = $(all-sources) | etags - 1206define cmd_TAGS
1207 rm -f $@; \
1208 ETAGSF=`etags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_GPL --extra=+f"`; \
1209 $(all-sources) | xargs etags $$ETAGSF -a
1210endef
1211
1212TAGS: FORCE
1213 $(call cmd,TAGS)
1207 1214
1208# Exuberant ctags works better with -I
1209 1215
1210quiet_cmd_tags = MAKE $@ 1216quiet_cmd_tags = MAKE $@
1211define cmd_tags 1217define cmd_tags
@@ -1214,9 +1220,6 @@ define cmd_tags
1214 $(all-sources) | xargs ctags $$CTAGSF -a 1220 $(all-sources) | xargs ctags $$CTAGSF -a
1215endef 1221endef
1216 1222
1217TAGS: FORCE
1218 $(call cmd,TAGS)
1219
1220tags: FORCE 1223tags: FORCE
1221 $(call cmd,tags) 1224 $(call cmd,tags)
1222 1225