I usually add the following to ctags in the Makefile so I can search for
file names in my editor. If you think others would find this useful too,
then please apply.
--- linux-2.6.10/Makefile.orig 2005-01-11 22:45:30.971843616 -0500
+++ linux-2.6.10/Makefile 2005-01-11 22:56:07.308105800 -0500
@@ -1167,7 +1167,7 @@
define cmd_tags
rm -f $@; \
CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo
"-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; \
- $(all-sources) | xargs ctags $$CTAGSF -a
+ $(all-sources) | xargs ctags $$CTAGSF -a --extra=+f
endef
TAGS: FORCE