From: Simon Ruderich Date: Wed, 12 Jun 2019 06:51:13 +0000 (+0200) Subject: Makefile: run go test in test target, not all target X-Git-Tag: 0.1~56 X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=commitdiff_plain;h=0a6b664843bea0d6d77c5e0013e2f5686181d84d Makefile: run go test in test target, not all target --- diff --git a/Makefile b/Makefile index b76c74e..f543f6d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ all: go generate ./... go vet ./... go build - go test ./... $(MAKE) --no-print-directory -C nss all clean: @@ -11,6 +10,7 @@ clean: test: go build # we need ./nsscash + go test ./... $(MAKE) --no-print-directory -C nss test .PHONY: all clean test