10 lines
75 B
Makefile
10 lines
75 B
Makefile
|
|
||
|
.PHONY: all
|
||
|
|
||
|
all:
|
||
|
$(MAKE) -C .. tests
|
||
|
|
||
|
%: %.cpp
|
||
|
$(MAKE) -C .. tests/$@
|
||
|
|