X-Git-Url: http://git.scottworley.com/slidingtile/blobdiff_plain/b778703f98571bb9b1b551a226572f236791bebf..d4aebc72dbc676b1b1ce7eeabedf3840e9c6aaf0:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index a8608d0..450ffe8 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ TESTS=$(subst .cc,,$(TEST_SRCS)) all: $(MAIN) $(TESTS) test: $(TESTS) - for t in ./*_test; do if ! $$t; then exit 1; fi ;done + for t in $(TESTS); do if ./$$t; then :; else exit $$?; fi ;done clean: rm -f *.o $(MAIN) $(TESTS) Makefile.bak