X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile;h=c781a028d9b97b89e2bd178b7f66b5d7c219e17f;hb=607d44e972a3449ee0f9fd639717406275a431bd;hp=c47ac1297a07de2e78de38bd0112d92d19965acd;hpb=926c47b3fa1c373a671edf3378b2b2abe3750912;p=pintos-anon diff --git a/src/Makefile b/src/Makefile index c47ac12..c781a02 100644 --- a/src/Makefile +++ b/src/Makefile @@ -5,8 +5,16 @@ all:: @echo "This top-level make has only 'clean' targets." clean:: - for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done + for d in $(SUBDIRS) tests; do $(MAKE) -C $$d $@; done -distclean:: - $(MAKE) clean +distclean:: clean find . -name '*~' -exec rm '{}' \; + +TAGS_SOURCES = `find \( -name tests -o -name build \) -prune -o -name \*.[chS] -print` + +TAGS:: + etags --members $(TAGS_SOURCES) + +tags:: + ctags -T --no-warn $(TAGS_SOURCES) +