frostfs-contract/Makefile
2020-07-15 11:47:29 +03:00

11 lines
234 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 config.json
tests:
go mod vendor
go test -mod=vendor -v -race $(PACKAGE)