From 20da4ec1c9ddd7dcb6f43adced0c75cc3ce97dfb Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 8 Jun 2019 15:57:23 +0200 Subject: [PATCH] Makefile: run all and clean in nss/ as well This way a single `make all` builds the whole project. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 725985d..b76c74e 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,11 @@ all: go vet ./... go build go test ./... + $(MAKE) --no-print-directory -C nss all clean: rm -f nsscash filetype_string.go + $(MAKE) --no-print-directory -C nss clean test: go build # we need ./nsscash -- 2.43.2