X-Git-Url: http://git.scottworley.com/slidingtile/blobdiff_plain/b778703f98571bb9b1b551a226572f236791bebf..59e5eb6e9b012d90c76bfc02918c270e8d26ab08:/Makefile diff --git a/Makefile b/Makefile index a8608d0..5994d06 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 exit 1; fi ;done clean: rm -f *.o $(MAIN) $(TESTS) Makefile.bak