feat: initial release
This commit is contained in:
parent
a3cf21f5bd
commit
1e0ee5bffe
40 changed files with 2007 additions and 217 deletions
13
Makefile
Normal file
13
Makefile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
all: hivemind hivemind-lite
|
||||
|
||||
hivemind:
|
||||
go build -o build/hivemind ./cmd/hivemind
|
||||
|
||||
hivemind-lite:
|
||||
CC=musl-gcc go build \
|
||||
-ldflags="-linkmode external -extldflags '-static'" \
|
||||
-o build/hivemind-lite \
|
||||
./cmd/hivemind-lite
|
||||
|
||||
.phony: all hivemind hivemind-lite
|
||||
Loading…
Add table
Add a link
Reference in a new issue