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

View file

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