11 lines
168 B
Makefile
11 lines
168 B
Makefile
.PHONY: check
|
|
check:
|
|
@./bin/setup.sh
|
|
|
|
.PHONY: test-cloudapi-graphql
|
|
test-cloudapi-graphql:
|
|
$(MAKE) -C cloudapi-graphql test
|
|
|
|
.PHONY: test
|
|
test: test-cloudapi-graphql
|