Would anyone object to the inclusion of local header files (not under
include/*) in the tags generation target?
--
Hans Grobler
--- linux.orig/Makefile Thu Aug 24 03:36:46 2000
+++ linux/Makefile Mon Sep 11 14:48:55 2000
@@ -286,14 +286,14 @@
TAGS: dummy
etags `find include/asm-$(ARCH) -name '*.h'`
find include -type d \( -name "asm-*" -o -name config \) -prune -o -name '*.h'
-print | xargs etags -a
- find $(SUBDIRS) init -name '*.c' | xargs etags -a
+ find $(SUBDIRS) init \( -name '*.c' -o -name '*.h' \) | xargs etags -a
# Exuberant ctags works better with -I
tags: dummy
CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I
__initdata,__initlocaldata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; \
ctags $$CTAGSF `find include/asm-$(ARCH) -name '*.h'` && \
find include -type d \( -name "asm-*" -o -name config \) -prune -o -name '*.h'
-print | xargs ctags $$CTAGSF -a && \
- find $(SUBDIRS) init -name '*.c' | xargs ctags $$CTAGSF -a
+ find $(SUBDIRS) init \( -name '*.c' -o -name '*.h' \) | xargs ctags $$CTAGSF -a
ifdef CONFIG_MODULES
ifdef CONFIG_MODVERSIONS
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/