removed 'address' option for Bochs.
[pintos-anon] / Makefile
index d1eab013e20772790f13a8fbd53e001e07c7a4fe..2c374e72bf33b40f32c6476d6b5013a6258910db 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
-SUBDIRS = src grading doc tests
+CLEAN_SUBDIRS = src doc tests
 
 all::
-       @echo "This makefile has only 'clean' targets."
+       @echo "This makefile has only 'clean' and 'check' targets."
 
 clean::
-       for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
+       for d in $(CLEAN_SUBDIRS); do $(MAKE) -C $$d $@; done
 
 distclean:: clean
        find . -name '*~' -exec rm '{}' \;