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