joyent-portal/Makefile

30 lines
567 B
Makefile
Raw Normal View History

2016-10-14 13:57:26 +03:00
.PHONY: check
check:
2016-10-20 16:55:05 +03:00
@./bin/setup
.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
.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-20 15:36:24 +03:00
.PHONY: install-backend
install-backend:
$(MAKE) -C backend install
2016-10-17 20:00:50 +03:00
.PHONY: install
2016-10-20 15:36:24 +03:00
install: install-cloudapi-graphql install-frontend install-backend