Add TAGS target to toplevel makefile. Adjust clean target to match.

This commit is contained in:
Tony Garnock-Jones 2014-03-12 12:55:24 -04:00 committed by Matthew Flatt
parent 6970a932e3
commit 139b228f2e

View File

@ -50,6 +50,9 @@ COPYING = "$(srcdir)/COPYING-libscheme.txt" \
all:
$(MAKE) @MAIN_VARIANT@
TAGS:
etags `find "@srcdir@/racket" -type f`
3m:
cd racket; $(MAKE) 3m
$(MAKE) @MAKE_GRACKET@-3m
@ -221,6 +224,7 @@ install-pdf:
clean:
cd racket; $(MAKE) clean
if [ -d gracket ]; then cd gracket; $(MAKE) clean; fi
rm -f TAGS
# Reconfigure ----------------------------------------