Makefile: change the test build target - no more cd

This commit is contained in:
Radu Iliescu 2018-12-03 07:31:01 -05:00
parent 83c97bab78
commit f60d6560b1

View file

@ -21,8 +21,8 @@ link: compile
compile: compile:
$(foreach dir,$(COMPONENTS), $(MAKE) -C $(dir) all ;) $(foreach dir,$(COMPONENTS), $(MAKE) -C $(dir) all ;)
test: compile link test: link
cd test; make all; make -C test all;
rebuild: clean all rebuild: clean all