From 5a6b8152cf4c9fcd71b875ff5dce1ec0fad9c9d4 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 12 Jun 2019 09:30:35 +0200 Subject: [PATCH] Makefile: remove recursion from go commands All go files are in the top level directory. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.43.2