Makefile: change the test build target - no more cd
This commit is contained in:
parent
83c97bab78
commit
f60d6560b1
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue