From 6633ec108b21a9f94a460ad95807d07bfef6a265 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Thu, 22 Jul 2021 16:12:59 +0300 Subject: [PATCH] [#113] Makefile: Fix after NNS contract introduction Without -o flag neo-go compiles contracts into `out.nef` file in the repository root. Signed-off-by: Alex Vanin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7aa8264..7915bbf 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ nns_sc = nns define sc_template $(2)$(1)/$(1)_contract.nef: $(2)$(1)/$(1)_contract.go - $(NEOGO) contract compile -i $(2)$(1) -c $(if $(2),$(2),$(1)/)config.yml -m $(2)$(1)/config.json + $(NEOGO) contract compile -i $(2)$(1) -c $(if $(2),$(2),$(1)/)config.yml -m $(2)$(1)/config.json -o $(2)$(1)/$(1)_contract.nef $(if $(2),$(2)$(1)/$(1)_contract.go: alphabet/alphabet.go alphabet/alphabet.tpl go run alphabet/alphabet.go