wormhole/sui/Makefile

16 lines
601 B
Makefile
Raw Normal View History

TEST_CONTRACT_DIRS := wormhole token_bridge examples/coins examples/core_messages
CLEAN_CONTRACT_DIRS := wormhole token_bridge examples/coins examples/core_messages
2023-01-12 11:36:42 -08:00
.PHONY: clean
clean:
$(foreach dir,$(TEST_CONTRACT_DIRS), make -C $(dir) $@ &&) true
2023-01-12 11:36:42 -08:00
.PHONY: test
test:
$(foreach dir,$(TEST_CONTRACT_DIRS), make -C $(dir) $@ &&) true
2023-01-12 11:36:42 -08:00
test-docker:
DOCKER_BUILDKIT=1 docker build --progress plain -f ../Dockerfile.cli -t cli-gen ..
DOCKER_BUILDKIT=1 docker build --build-arg num_guardians=1 --progress plain -f ../Dockerfile.const -t const-gen ..
DOCKER_BUILDKIT=1 docker build -f Dockerfile ..