]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blobdiff - Makefile
.github: update upstream actions to latest version
[nsscash/nsscash.git] / Makefile
index fe36167848afa89e7752c4edfb3e66ad08458717..39f5818f293c2e652345f02afab0bb3d8cc058a1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,16 @@
 all:
-       go generate ./...
-       go vet ./...
+       go generate
+       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
+       go test
+       $(MAKE) --no-print-directory -C nss test
+
+.PHONY: all clean test