]> ruderich.org/simon Gitweb - nsscash/nsscash.git/commitdiff
Makefile: remove recursion from go commands
authorSimon Ruderich <simon@ruderich.org>
Wed, 12 Jun 2019 07:30:35 +0000 (09:30 +0200)
committerSimon Ruderich <simon@ruderich.org>
Wed, 12 Jun 2019 07:30:35 +0000 (09:30 +0200)
All go files are in the top level directory.

Makefile

index f543f6d7f6df2999f6ee4280267be305fd569247..39f5818f293c2e652345f02afab0bb3d8cc058a1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 all:
-       go generate ./...
-       go vet ./...
+       go generate
+       go vet
        go build
        $(MAKE) --no-print-directory -C nss all
 
@@ -10,7 +10,7 @@ clean:
 
 test:
        go build # we need ./nsscash
-       go test ./...
+       go test
        $(MAKE) --no-print-directory -C nss test
 
 .PHONY: all clean test