summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 1c4208d..e3e94ca 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -9,7 +9,9 @@ OBJ = ${SRC:.c=.o}
TEST_SNIPPETS = $(notdir $(basename $(wildcard snippets/*.c)))
EXPECTATIONS= $(notdir $(basename $(wildcard snippets/*.variable)))
-all: timetest test
+ALL_TESTS = timetest test
+
+all: $(ALL_TESTS)
.c.o:
${CC} -c ${CFLAGS} $<