Add advice target to makefile.

This commit is contained in:
Matt T. Proud 2013-01-27 17:53:20 +01:00
parent ed0db275d8
commit 15cc7744cd
1 changed files with 4 additions and 1 deletions

View File

@ -32,11 +32,14 @@ clean:
format:
find . -iname '*.go' | egrep -v "generated|\.(l|y)\.go" | xargs -n1 gofmt -w -s=true
advice:
go tool vet -v .
search_index:
godoc -index -write_index -index_files='search_index'
documentation: search_index
godoc -http=:6060 -index -index_files='search_index'
.PHONY: build clean format test
.PHONY: advice build clean documentation format search_index test