1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# Copyright 2014 The zappy Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
all: editor
go tool vet -printfuncs Log:0,Logf:0 .
golint .
go install
make todo
editor:
go fmt
go test -i
@#go test
./purego.sh
todo:
@grep -n ^[[:space:]]*_[[:space:]]*=[[:space:]][[:alnum:]] *.go || true
@grep -n TODO *.go || true
@grep -n BUG *.go || true
@grep -n println *.go || true
clean:
rm -f *~ cov cov.html
gocov:
gocov test $(COV) | gocov-html > cov.html
bench:
go test -run NONE -bench B
|