diff --git a/contribs/Makefile b/contribs/Makefile index 5a2a00fc2ef..e743351bcfd 100644 --- a/contribs/Makefile +++ b/contribs/Makefile @@ -3,7 +3,7 @@ help: @echo "Available make commands:" @cat Makefile | grep '^[a-z][^:]*:' | cut -d: -f1 | sort | sed 's/^/ /' -programs=gnodev gnofaucet +programs=$(wildcard */) # command to run dependency utilities, like goimports. rundep=go run -modfile ../misc/devdeps/go.mod diff --git a/contribs/gnofaucet/Makefile b/contribs/gnofaucet/Makefile index 03ef409cac9..b520a17182f 100644 --- a/contribs/gnofaucet/Makefile +++ b/contribs/gnofaucet/Makefile @@ -5,3 +5,9 @@ install: .PHONY: build build: go build -o build/gnofaucet . + +test: + @echo "XXX: add tests" + +lint: + @echo "XXX: add lint" diff --git a/contribs/gnokeykc/Makefile b/contribs/gnokeykc/Makefile new file mode 100644 index 00000000000..f953631b529 --- /dev/null +++ b/contribs/gnokeykc/Makefile @@ -0,0 +1,8 @@ +install: + go install . + +test: + @echo "XXX: add tests" + +lint: + @echo "XXX: add lint" diff --git a/contribs/gnomd/Makefile b/contribs/gnomd/Makefile new file mode 100644 index 00000000000..f953631b529 --- /dev/null +++ b/contribs/gnomd/Makefile @@ -0,0 +1,8 @@ +install: + go install . + +test: + @echo "XXX: add tests" + +lint: + @echo "XXX: add lint"