1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 05:43:52 +03:00
copilot/Makefile
2016-10-24 12:43:32 +01:00

34 lines
621 B
Makefile

.PHONY: check
check:
@./bin/setup
.PHONY: test-cloudapi-graphql
test-cloudapi-graphql:
$(MAKE) -C cloudapi-graphql test
.PHONY: test-frontend
test-frontend:
$(MAKE) -C frontend test
.PHONY: test-ui
test-ui:
$(MAKE) -C ui test
.PHONY: test
test: test-cloudapi-graphql test-frontend test-ui
.PHONY: install-cloudapi-graphql
install-cloudapi-graphql:
$(MAKE) -C cloudapi-graphql install
.PHONY: install-frontend
install-frontend:
$(MAKE) -C frontend install
.PHONY: install-backend
install-backend:
$(MAKE) -C backend install
.PHONY: install
install: install-cloudapi-graphql install-frontend install-backend