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