X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2FMakefile;h=af04b414c667e9520a6d1943b5e32a69cd1a4105;hb=5a121c17dc3088074ff51b99dbe353b25e7adff1;hp=f7c813184e6a1eddbbeb146f343ae674f207db31;hpb=7f022bbe1d53e8416a05f0f9e5b4cdd9b19f7806;p=pintos-anon diff --git a/tests/Makefile b/tests/Makefile index f7c8131..af04b41 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,5 +1,10 @@ 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 for d in $(TESTS); do $(MAKE) $$d || exit 1; done