add makefile

This commit is contained in:
siddontang 2014-07-20 19:03:00 +08:00
parent e8e3f6324b
commit b04aa337c4
1 changed files with 11 additions and 0 deletions

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
all: build
build:
go install ./...
clean:
go clean -i ./...
test:
go test ./...
go test -race ./...