From: Simon Ruderich Date: Wed, 12 Jun 2019 07:30:35 +0000 (+0200) Subject: Makefile: remove recursion from go commands X-Git-Tag: 0.1~53 X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=commitdiff_plain;h=5a6b8152cf4c9fcd71b875ff5dce1ec0fad9c9d4 Makefile: remove recursion from go commands All go files are in the top level directory. --- diff --git a/Makefile b/Makefile index f543f6d..39f5818 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ all: - go generate ./... - go vet ./... + go generate + go vet go build $(MAKE) --no-print-directory -C nss all @@ -10,7 +10,7 @@ clean: test: go build # we need ./nsscash - go test ./... + go test $(MAKE) --no-print-directory -C nss test .PHONY: all clean test