We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00cfe56 commit 6e12961Copy full SHA for 6e12961
gnovm/Makefile
@@ -32,8 +32,8 @@ test: _test.cmd _test.pkg _test.gnolang
32
_test.cmd:
33
go test ./cmd/... -v -p 1 -timeout=30m
34
35
-.PHONY: test.pkg
36
-test.pkg:
+.PHONY: _test.pkg
+_test.pkg:
37
go test ./pkg/... -v -p 1 -timeout=30m
38
39
.PHONY: _test.gnolang
@@ -60,7 +60,8 @@ _test.gnolang.pkg2:
60
61
# Code gen
62
stringer_cmd=$(rundep) golang.org/x/tools/cmd/stringer
63
-stringer:
+.PHONY: _dev.stringer
64
+_dev.stringer:
65
$(stringer_cmd) -type=Kind ./pkg/gnolang
66
$(stringer_cmd) -type=Op ./pkg/gnolang
67
$(stringer_cmd) -type=TransCtrl ./pkg/gnolang
0 commit comments