Really make it safe to call printf() from any context.
[pintos-anon] / src / Makefile
index 9242a7a1ce6757bb9dffc202389c3551c2da00a3..d6d325516d88f40805af8eb05aa190e4b194d62e 100644 (file)
@@ -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]`
+