joyent-portal/Makefile
2016-10-20 10:58:19 +01:00

26 lines
484 B
Makefile

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