1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* Makefile.in (tags): New name for `TAGS' target, which will

always run the commands.
This commit is contained in:
Jim Blandy 1996-09-10 00:53:45 +00:00
parent a949b3f2c4
commit c2483da07e

View file

@ -157,7 +157,11 @@ realclean:
# and then use etags' --include option to incorporate them all by # and then use etags' --include option to incorporate them all by
# reference into a top-level TAGS file, but the --include option # reference into a top-level TAGS file, but the --include option
# seems to be deprecated, and this works fine. # seems to be deprecated, and this works fine.
TAGS: #
# The extra 'tags' name is useful --- 'make TAGS' won't run the
# commands if the file `TAGS' already exists, but `make tags'
# doesn't have that problem.
TAGS tags:
etags \ etags \
--regex='/SCM_PROC[^"]*"[^"]*"/' \ --regex='/SCM_PROC[^"]*"[^"]*"/' \
`find . -name '*.[ch]' -o -name '*.scm'` `find . -name '*.[ch]' -o -name '*.scm'`