X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile;h=d6d325516d88f40805af8eb05aa190e4b194d62e;hb=c5a08d7d60cbcfee646f61db4b827d63937361b3;hp=9242a7a1ce6757bb9dffc202389c3551c2da00a3;hpb=361c7416e6dad0124adef553993c72511d248933;p=pintos-anon diff --git a/src/Makefile b/src/Makefile index 9242a7a..d6d3255 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,4 +1,4 @@ -SUBDIRS = threads filesys +SUBDIRS = threads userprog vm filesys all:: @echo "Run 'make' in subdirectories $(SUBDIRS)." @@ -10,3 +10,10 @@ clean:: distclean:: $(MAKE) clean find . -name '*~' -exec rm '{}' \; + +TAGS:: + etags --members `find . -name \*.[chS]` + +tags:: + ctags -T `find . -name \*.[chS]` +