X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=blobdiff_plain;f=Makefile;h=f543f6d7f6df2999f6ee4280267be305fd569247;hp=fe36167848afa89e7752c4edfb3e66ad08458717;hb=0a6b664843bea0d6d77c5e0013e2f5686181d84d;hpb=92afde4e875a96e1ab865e29b9f0d11b08d7db1c diff --git a/Makefile b/Makefile index fe36167..f543f6d 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,15 @@ all: 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 +.PHONY: all clean test