(strip_exit_codes) Include _ in the list of characters considered as
[pintos-anon] / tests / Makefile
index e6a9c98b4f13c7fe73946825afc5ac20d71d70ad..4bdd5977703616563a802edd382f0f7f9667764d 100644 (file)
@@ -2,8 +2,14 @@ TESTS = threads p1-1 p1-2 p1-3 list stdlib userprog p2 vm filesys
 
 PATH := $(shell pwd)/../src/utils:$(PATH)
 
+all:
+       @echo "This Makefile has only \`check' targets."
+
 check:
        $(MAKE) -C .. distclean
+       $(MAKE) check-noclean
+
+check-noclean:
        for d in $(TESTS); do $(MAKE) $$d || exit 1; done
        @echo All tests passed.