13 lines
265 B
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
|