mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-01-22 02:18:42 -05:00
18 lines
231 B
Makefile
18 lines
231 B
Makefile
.DEFAULT_GOAL := test
|
|
|
|
.PHONY: all
|
|
test: unittest systemtest
|
|
|
|
.PHONY: unittest
|
|
unittest:
|
|
$(MAKE) -C unit test
|
|
|
|
.PHONY: systemtest
|
|
systemtest:
|
|
$(MAKE) -C system test
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(MAKE) -C unit $@
|
|
$(MAKE) -C system $@
|