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