Makefile 161 Bytes
Newer Older
Jeromy's avatar
Jeromy committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

godep:
	go get github.com/tools/godep

vendor: godep
	godep save -r ./...

build:
	go build ./...

test:
	go test ./...

test_race:
	go test -race -cpu 5 ./...