From 993398d23858ccb3f5bbd99b91f163e0105642e4 Mon Sep 17 00:00:00 2001 From: Elfyn McBratney Date: Tue, 16 Jan 2007 07:00:33 +0000 Subject: [PATCH] Add target 'all' as a dependency of 'check'. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 61ff8a2..1a6766e 100644 --- a/Makefile +++ b/Makefile @@ -33,11 +33,11 @@ install-recursive: $(SUBDIRS) done .PHONY: check -check: tests +check: all tests @echo -e "\\n... Building tests"; \ - $(SUBMAKE) -C $< all || exit 1; \ + $(SUBMAKE) -C tests all || exit 1; \ echo -e "\\n... Running tests"; \ - $(SUBMAKE) -C $< check + $(SUBMAKE) -C tests check .PHONY: clean clean-recursive clean: clean-recursive -- 2.11.4.GIT