1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* Makefile.in (TAGS): Produce a single tags file for all of Guile.

This commit is contained in:
Jim Blandy 1996-09-03 05:07:54 +00:00
parent 9e6758ee8c
commit ddc2af8608

View file

@ -153,12 +153,14 @@ realclean:
#`TAGS'
# Update a tags table for this program.
# We could allow each subdirectory to create its own TAGS file,
# and then use etags' --include option to incorporate them all by
# reference into a top-level TAGS file, but the --include option
# seems to be deprecated, and this works fine.
TAGS:
for dir in ${subdirs}; do \
cd $$dir; \
${MAKE} TAGS; \
cd .. ;\
done
etags \
--regex='/SCM_PROC[^"]*"[^"]*"/' \
`find . -name '*.[ch]' -o -name '*.scm'`
#`info'
# Generate any info files needed. The best way to write the rules