From: Ben Pfaff Date: Wed, 8 Sep 2004 00:58:15 +0000 (+0000) Subject: Add TAGS, tags targets. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2fdbe98af66ad0870d2e5466f539d655a8eeff7;p=pintos-anon Add TAGS, tags targets. --- diff --git a/src/Makefile b/src/Makefile index c47ac12..d6d3255 100644 --- a/src/Makefile +++ b/src/Makefile @@ -10,3 +10,10 @@ clean:: distclean:: $(MAKE) clean find . -name '*~' -exec rm '{}' \; + +TAGS:: + etags --members `find . -name \*.[chS]` + +tags:: + ctags -T `find . -name \*.[chS]` +