mirror of
https://github.com/GrassrootsEconomics/cic-dw.git
synced 2024-11-13 03:36:45 +01:00
5 lines
106 B
Makefile
5 lines
106 B
Makefile
|
BIN := cic-dw
|
||
|
|
||
|
.PHONY: build
|
||
|
build:
|
||
|
CGO_ENABLED=1 GOOS=linux go build -o ${BIN} -ldflags="-s -w" cmd/*.go
|