projects
/
vaultmon
/
.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Add Makefile
[vaultmon/.git]
/
Makefile
1
.PHONY: build
2
3
build:
4
@echo -n Building vaultmon...
5
@go build .
6
@echo done
7
8
test:
9
go test -v
10
11
coverage:
12
go test -coverprofile=cover.out
13
go tool cover -func=cover.out
14
go tool cover -html=cover.out
15
16
clean:
17
rm -rf cover.out ./vaultmon