]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blob - Makefile
.github: update upstream actions to latest version
[nsscash/nsscash.git] / Makefile
1 all:
2         go generate
3         go vet
4         go build
5         $(MAKE) --no-print-directory -C nss all
6
7 clean:
8         rm -f nsscash filetype_string.go
9         $(MAKE) --no-print-directory -C nss clean
10
11 test:
12         go build # we need ./nsscash
13         go test
14         $(MAKE) --no-print-directory -C nss test
15
16 .PHONY: all clean test