Files
gnucash/Makefile.TAGS
T

26 lines
1022 B
Makefile
Raw Normal View History

2001-12-04 22:40:48 +00:00
# -*-Makefile-*-
# These are in a separate file because we need to do one, and then the
# other and we need to only consider the files listed inside
# etags.files as valid dependencies *after* we've updated etags.files.
# i.e. TAGS: etags.files $(shell cat etags.files) doesn't work right
# because etags.files contents are expanded before it's re-generated.
2005-11-02 03:32:36 +00:00
etags.files: $(shell find . -mindepth 1 -type d ! -name CVS ! -path "*/.*")
find . -path '*/.*' -prune -o \( -name '*.[ch]' -o -name '*.scm' \) \
-print | sort > etags.files.tmp
cmp -s etags.files etags.files.tmp || cp etags.files.tmp etags.files
rm -f etags.files.tmp
touch etags.files
2001-12-04 22:40:48 +00:00
# we don't need an etags.files dep here b/c you always call this after
# re-generating etags.files if needed from the top-level Makefile.am.
2005-11-02 03:32:36 +00:00
TAGS: $(shell cat etags.files)
2006-05-28 14:34:50 +00:00
if [ -f TAGS ]; then rm TAGS; fi
cat etags.files | xargs -n 200 etags --append
2002-11-30 08:59:19 +00:00
2005-11-02 03:32:36 +00:00
tags: $(shell cat etags.files)
2006-05-28 14:34:50 +00:00
if [ -f TAGS ]; then rm tags; fi
cat etags.files | xargs -n 200 ctags --append