Files
gocast/Makefile
2019-10-16 15:57:55 -07:00

17 lines
249 B
Makefile

.PHONY: all gocast test
all:
$(MAKE) gocast
gocast:
go build -mod=vendor .
debug:
go build -mod=vendor -race .
test:
go test -v -race -short -failfast -mod=vendor ./...
linux:
GOOS=linux GOARCH=amd64 go build -o gocast_linux -mod=vendor .