More Makefile simplification.
[open-adventure.git] / tests / Makefile
index 2fdb8aafbaf661290bcfde7434d1853626765025..4ab1b4cee1b859dd65536eddb82e802c60715bd9 100644 (file)
@@ -11,10 +11,7 @@ PATH := $(realpath ..):$(realpath .):${PATH}
 # Defeat annoying behavior under Mac OS X - builtin echo doesn't do -n
 ECHO := /bin/echo
 
-default:
-       make -e --quiet all
-
-all: listcheck regress
+all: regress
        @echo "=== No diff output is good news."
 
 .SUFFIXES: .chk
@@ -36,8 +33,7 @@ TESTLOADS := $(shell ls -1 *.log | sed '/.log/s///')
 buildregress: adventure.data
        @for file in $(TESTLOADS); do \
            echo "Remaking $${file}.chk"; \
-           $(REPOSURGEON) advent <$${file}.log >$${file}.chk \
-               2>&1 || exit 1; \
+           advent <$${file}.log >$${file}.chk 2>&1 || exit 1; \
        done
 regress: adventure.data
        @for file in $(TESTLOADS); do \