X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile;h=626e6dd924ceb070e8606ce4ebd099ffcef74c0d;hb=c00f7a66b5c2352cddc3db336731bab3a8faa1ba;hp=ee58cc33149c6ce8e6d513feb63c5c9feff20b56;hpb=ca00eb38b220df6f4c1112ae104fff1d56f2b310;p=pintos-anon diff --git a/src/Makefile b/src/Makefile index ee58cc3..626e6dd 100644 --- a/src/Makefile +++ b/src/Makefile @@ -14,11 +14,13 @@ distclean:: clean find . -name '*~' -exec rm '{}' \; TAGS_SUBDIRS = $(BUILD_SUBDIRS) devices lib -TAGS_SOURCES = `find $(TAGS_SUBDIRS) -name \*.[chS] -print` +TAGS_SOURCES = find $(TAGS_SUBDIRS) -name \*.[chS] -print TAGS:: - etags --members $(TAGS_SOURCES) + etags --members `$(TAGS_SOURCES)` tags:: - ctags -T --no-warn $(TAGS_SOURCES) + ctags -T --no-warn `$(TAGS_SOURCES)` +cscope.files:: + $(TAGS_SOURCES) > cscope.files