Makefile: change the test build target - no more cd

master^2^2
Radu Iliescu 2018-12-03 07:31:01 -05:00
parent 83c97bab78
commit f60d6560b1
1 changed files with 2 additions and 2 deletions

View File

@ -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