joyent-portal/Makefile

38 lines
687 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
2016-10-24 14:43:32 +03:00
.PHONY: test-ui
test-ui:
$(MAKE) -C ui test
.PHONY: test
2016-10-24 14:43:32 +03:00
test: test-cloudapi-graphql test-frontend test-ui
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-24 15:55:30 +03:00
.PHONY: install-ui
2016-10-24 16:00:13 +03:00
install-ui:
2016-10-24 15:55:30 +03:00
$(MAKE) -C ui 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-24 15:55:30 +03:00
install: install-cloudapi-graphql install-frontend install-backend install-ui