1
0
Fork 0
hivemind/Makefile

13 lines
265 B
Makefile

all: hivemind hivemind-musl
hivemind:
go build -o build/hivemind ./cmd/hivemind
hivemind-musl:
CC=musl-gcc go build \
-ldflags="-linkmode external -extldflags '-static'" \
-o build/hivemind-musl \
./cmd/hivemind
.phony: all hivemind hivemind-musl