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:
|
||||
$(foreach dir,$(COMPONENTS), $(MAKE) -C $(dir) all ;)
|
||||
|
||||
test: compile link
|
||||
cd test; make all;
|
||||
test: link
|
||||
make -C test all;
|
||||
|
||||
rebuild: clean all
|
||||
|
||||
|
|
Loading…
Reference in a new issue