From f60d6560b122a7ab6fbf0ba5d6cf98d0fb832c8f Mon Sep 17 00:00:00 2001 From: Radu Iliescu Date: Mon, 3 Dec 2018 07:31:01 -0500 Subject: [PATCH] Makefile: change the test build target - no more cd --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1eab075..f44fb2a 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,8 @@ link: compile compile: $(foreach dir,$(COMPONENTS), $(MAKE) -C $(dir) all ;) -test: compile link - cd test; make all; +test: link + make -C test all; rebuild: clean all