wormhole/aptos/Makefile

11 lines
272 B
Makefile
Raw Normal View History

2022-10-13 18:21:26 -07:00
CONTRACT_DIRS := deployer wormhole token_bridge examples coin
TARGETS := build test
.PHONY: $(TARGETS)
$(TARGETS):
$(foreach dir,$(CONTRACT_DIRS), make -C $(dir) $@ &&) true
test-docker:
2022-12-13 12:17:34 -08:00
DOCKER_BUILDKIT=1 docker build --progress plain -f Dockerfile --target tests .