X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=blobdiff_plain;f=Makefile;h=39f5818f293c2e652345f02afab0bb3d8cc058a1;hp=725985d8a242aea82a861abb27d76e30a0dbdaea;hb=HEAD;hpb=6c6e3873642de8c412e5cdc829595b131d800e63 diff --git a/Makefile b/Makefile index 725985d..39f5818 100644 --- 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