2016-10-14 13:57:26 +03:00
|
|
|
.PHONY: check
|
|
|
|
check:
|
|
|
|
@./bin/setup.sh
|
2016-10-17 19:56:01 +03:00
|
|
|
|
|
|
|
.PHONY: test-cloudapi-graphql
|
|
|
|
test-cloudapi-graphql:
|
|
|
|
$(MAKE) -C cloudapi-graphql test
|
|
|
|
|
2016-10-20 04:14:26 +03:00
|
|
|
.PHONY: test-frontend
|
|
|
|
test-frontend:
|
|
|
|
$(MAKE) -C frontend test
|
|
|
|
|
2016-10-17 19:56:01 +03:00
|
|
|
.PHONY: test
|
2016-10-20 04:14:26 +03:00
|
|
|
test: test-cloudapi-graphql test-frontend
|
2016-10-17 20:00:50 +03:00
|
|
|
|
|
|
|
.PHONY: install-cloudapi-graphql
|
|
|
|
install-cloudapi-graphql:
|
|
|
|
$(MAKE) -C cloudapi-graphql install
|
|
|
|
|
2016-10-20 04:14:26 +03:00
|
|
|
.PHONY: install-frontend
|
|
|
|
install-frontend:
|
|
|
|
$(MAKE) -C frontend install
|
|
|
|
|
2016-10-17 20:00:50 +03:00
|
|
|
.PHONY: install
|
2016-10-20 04:14:26 +03:00
|
|
|
install: install-cloudapi-graphql install-frontend
|