X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=blobdiff_plain;f=Makefile;h=b76c74eefedbe023ba923c4f027a473fd7ea60b8;hp=fe36167848afa89e7752c4edfb3e66ad08458717;hb=20da4ec1c9ddd7dcb6f43adced0c75cc3ce97dfb;hpb=92afde4e875a96e1ab865e29b9f0d11b08d7db1c diff --git a/Makefile b/Makefile index fe36167..b76c74e 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,14 @@ all: 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 + $(MAKE) --no-print-directory -C nss test + +.PHONY: all clean test