wormhole/sui/examples/core_messages/Makefile

21 lines
265 B
Makefile

-include ../../../Makefile.help
.PHONY: artifacts
artifacts: clean
.PHONY: clean
# Clean build artifacts
clean:
rm -rf build
.PHONY: build
# Build contract
build:
sui move build
.PHONY: test
# Run tests
test:
sui move build -d || exit $?
sui move test -t 1