970aa24b23d625782b7bfb9031ddecd4148f6a1d hiram Thu May 11 13:19:42 2023 -0700 eliminate the userApps source hierarchy from tags-all to prevent the duplicate useless matches no redmine diff --git src/makefile src/makefile index 22333e2..23b75da 100644 --- src/makefile +++ src/makefile @@ -140,31 +140,31 @@ cscope.out: find `pwd` -name '*.c' -o -name '*.h' > cscope.files cscope -qRb `cat cscope.files` search: cscope.out cscope -d # build emacs tags for libraries .PHONY: etags etags: etags ${LIB_TAGS_IN} # build tags for all files .PHONY: tags-all tags-all: - find . -name '*.[ch]' | ctags -L - + find . -name '*.[ch]' | grep -v "/userApps/" | ctags -L - # build emacs tags for all files .PHONY: etags-all etags-all: find . -name '*.[ch]' | etags - utils: libs destBin ${MKDIR} ${SCRIPTS} cd parasol && ${MAKE} @for D in ${DIRS} x; do \ if test "$$D" != "x" ; then \ ( cd $$D && echo $$D && ${MAKE} ) ;\ x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \ fi ;\ done