From: Simon Ruderich Date: Sat, 8 Jun 2019 13:55:58 +0000 (+0200) Subject: Makefile: add test target X-Git-Tag: 0.1~82 X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=commitdiff_plain;h=6c6e3873642de8c412e5cdc829595b131d800e63 Makefile: add test target --- diff --git a/Makefile b/Makefile index fe36167..725985d 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,8 @@ all: clean: rm -f nsscash filetype_string.go -.PHONY: all clean +test: + go build # we need ./nsscash + $(MAKE) --no-print-directory -C nss test + +.PHONY: all clean test