Files
gocast/Makefile
2022-03-09 13:17:04 -08:00

17 lines
257 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:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o gocast -mod=vendor .