frostfs-contract/Makefile
2020-04-01 19:27:29 +03:00

11 lines
199 B
Makefile

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