10 lines
253 B
Makefile
10 lines
253 B
Makefile
dist:
|
|
cd web && npm install
|
|
cd web && npm run build
|
|
|
|
linux:
|
|
go build -v -ldflags '-linkmode=external -extldflags=-static' -tags sqlite_omit_load_extension,netgo
|
|
|
|
windows:
|
|
CC=x86_64-w64-mingw32-gcc CGO_ENABLED=1 GOOS=windows GOARCH=amd64 go build -v
|