chore: remove empty hivemind-lite
This commit is contained in:
parent
fc31d375a2
commit
28b7993be4
3 changed files with 5 additions and 15 deletions
10
Makefile
10
Makefile
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
all: hivemind hivemind-musl hivemind-lite
|
all: hivemind hivemind-musl
|
||||||
|
|
||||||
hivemind:
|
hivemind:
|
||||||
go build -o build/hivemind ./cmd/hivemind
|
go build -o build/hivemind ./cmd/hivemind
|
||||||
|
|
@ -10,10 +10,4 @@ hivemind-musl:
|
||||||
-o build/hivemind-musl \
|
-o build/hivemind-musl \
|
||||||
./cmd/hivemind
|
./cmd/hivemind
|
||||||
|
|
||||||
hivemind-lite:
|
.phony: all hivemind hivemind-musl
|
||||||
CC=musl-gcc go build \
|
|
||||||
-ldflags="-linkmode external -extldflags '-static'" \
|
|
||||||
-o build/hivemind-lite \
|
|
||||||
./cmd/hivemind-lite
|
|
||||||
|
|
||||||
.phony: all hivemind hivemind-musl hivemind-lite
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
package main
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
fmt.Println("hivemind lite")
|
|
||||||
}
|
|
||||||
|
|
@ -9,6 +9,9 @@ import (
|
||||||
"github.com/BurntSushi/toml"
|
"github.com/BurntSushi/toml"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// TODO: make all configs have a codegen verification and merging
|
||||||
|
// assume that 0 and "" are invalid values, i.e. use -1 for unset
|
||||||
|
|
||||||
type Configs struct {
|
type Configs struct {
|
||||||
Master MasterConfig
|
Master MasterConfig
|
||||||
Dns DnsConfig
|
Dns DnsConfig
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue