Files
privacore-open-source-searc…/test/Makefile

18 lines
231 B
Makefile
Raw Normal View History

.DEFAULT_GOAL := test
.PHONY: all
test: unittest systemtest
.PHONY: unittest
unittest:
2016-05-24 14:59:35 +02:00
$(MAKE) -C unit test
.PHONY: systemtest
systemtest:
2016-05-24 14:59:35 +02:00
$(MAKE) -C system test
.PHONY: clean
clean:
2016-05-24 14:59:35 +02:00
$(MAKE) -C unit $@
$(MAKE) -C system $@