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