mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-04-18 14:48:48 -04: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 $@
|