X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2FMakefile;h=f813f7de92a1206dfbd157e4a8690e563df92df7;hb=c9613f4d1fd208911409de6f82b430e5f9a595ae;hp=f7c813184e6a1eddbbeb146f343ae674f207db31;hpb=7f022bbe1d53e8416a05f0f9e5b4cdd9b19f7806;p=pintos-anon diff --git a/tests/Makefile b/tests/Makefile index f7c8131..f813f7d 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