twitchsingstools/Makefile
Martyn Ranyard 4572f7dae1 Working but too slow
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2020-07-15 21:19:06 +02:00

17 lines
333 B
Makefile
Executable file

BUILD=`date +%FT%T%z`
LDFLAGS=-ldflags "-X main.buildDate=${BUILD}"
.PHONY: build deps static
test:
go test git.martyn.berlin/martyn/twitchsingstools/internal/webserver
build:
go build ${LDFLAGS}
deps:
go get
static:
CGO_ENABLED=0 GOOS=linux go build ${LDFLAGS} -a -installsuffix cgo -o twitchsingstools .