Initial commit for gocast

This commit is contained in:
Mayuresh Gaitonde
2018-10-22 19:03:42 -07:00
commit e20f691de5
10 changed files with 1006 additions and 0 deletions

23
Makefile Normal file
View File

@@ -0,0 +1,23 @@
.PHONY: all gocast test
all:
$(MAKE) deps
$(MAKE) gocast
deps:
go get -u golang.org/x/lint/golint
go get -u github.com/golang/dep/cmd/dep
dep ensure
gocast:
go build .
debug:
dep ensure
go build -race .
test:
go test -v -race -short -failfast ./...
linux:
GOOS=linux GOARCH=amd64 go build -o gocast_linux .