From e7917d322559962abe975466a69179382ca0c2b5 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Wed, 21 Nov 2012 20:27:41 +0000 Subject: [PATCH] Make makefile runtest rule depend on all to be built --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index aa5ef11..1c6acd2 100644 --- a/Makefile +++ b/Makefile @@ -51,12 +51,12 @@ gmqcc: $(OBJ_C) $(OBJ) test: $(OBJ_T) $(CC) -o $@ $^ $(CFLAGS) - -runtests: - ./test all: gmqcc qcvm test +runtests: all + ./test + clean: rm -f *.o gmqcc qcvm test *.dat -- 2.39.2