]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blobdiff - Makefile
Makefile: run all and clean in nss/ as well
[nsscash/nsscash.git] / Makefile
index fe36167848afa89e7752c4edfb3e66ad08458717..b76c74eefedbe023ba923c4f027a473fd7ea60b8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,14 @@ 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
 
-.PHONY: all clean
+test:
+       go build # we need ./nsscash
+       $(MAKE) --no-print-directory -C nss test
+
+.PHONY: all clean test