11 lines
234 B
Makefile
11 lines
234 B
Makefile
.PHONY: web linux windows
|
|
web:
|
|
cd web && npm install
|
|
cd web && npm run build
|
|
|
|
linux:
|
|
CGO_ENABLED=0 go build -v -ldflags '-extldflags=-static'
|
|
|
|
windows:
|
|
CC=x86_64-w64-mingw32-gcc CGO_ENABLED=1 GOOS=windows GOARCH=amd64 go build -v
|