d56a210fa7491258be90208f4f3afc2ace9ad0b7 max Thu Jul 31 14:27:58 2014 -0700 changing cscope target again for older versions diff --git src/makefile src/makefile index 7090314..4d41ed1 100644 --- src/makefile +++ src/makefile @@ -95,32 +95,32 @@ rm -f tags TAGS testDirs = lib utils blat gfServer hg test:: $(testDirs:%=%.test) %.test: cd $* && ${MAKE} test LIB_TAGS_IN = lib/*.[hc] */lib/*.[hc] */*/lib/*.[hc] */*/*/lib/*.[hc] jkOwnLib/*.c inc/*.h hg/inc/*.h hg/encode3/encodeDataWarehouse/lib/*.c hg/encode3/encodeDataWarehouse/inc/*.h hg/encode3/eap/inc/*.h # build tags for libraries .PHONY: tags tags: ctags ${LIB_TAGS_IN} cscope: - find `pwd` -name '*.c' -o -name '*.h' > cscope.files - cscope -Rb + find `pwd` -name '*.c' -o -name '*.h' > sourceFiles + cscope -Rb `cat sourceFiles` # 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 - # build emacs tags for all files .PHONY: etags-all etags-all: find . -name '*.[ch]' | etags -