diff options
author | Jim Blandy <jimb@red-bean.com> | 1996-09-10 00:53:45 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1996-09-10 00:53:45 +0000 |
commit | c2483da07e0fc600252ece60201ca1d8001cdae1 (patch) | |
tree | 4ca1e200aca6e77938292f38075645dc58d56f65 | |
parent | a949b3f2c4572e5db8068d5cd47772997f919b66 (diff) | |
download | guile-c2483da07e0fc600252ece60201ca1d8001cdae1.tar.gz |
* Makefile.in (tags): New name for `TAGS' target, which will
always run the commands.
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 1677718ab..2e6a00e41 100644 --- a/Makefile.in +++ b/Makefile.in @@ -157,7 +157,11 @@ realclean: # 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: +# +# 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 \ --regex='/SCM_PROC[^"]*"[^"]*"/' \ `find . -name '*.[ch]' -o -name '*.scm'` |