From: Dale Weiler Date: Wed, 21 Nov 2012 20:27:41 +0000 (+0000) Subject: Make makefile runtest rule depend on all to be built X-Git-Tag: 0.1.9~362 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e7917d322559962abe975466a69179382ca0c2b5;p=xonotic%2Fgmqcc.git Make makefile runtest rule depend on all to be built --- 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