frostfs-contract/Makefile

12 lines
242 B
Makefile

PACKAGE=github.com/nspcc-dev/neofs-contract
NEOGO?=neo-go
.PHONY: build tests
build:
$(NEOGO) contract compile -i neofs_contract.go -c neofs_config.yml -m neofs.manifest.json
tests:
go mod vendor
go test -mod=vendor -v -race $(PACKAGE)