bfchroma turned out to be a hassle

Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>

git-svn-id: file:///srv/svn/repo/aya/trunk@68 cec141ff-132a-4243-88a5-ce187bd62f94
This commit is contained in:
yakumo.izuru
2023-09-07 16:52:43 +00:00
parent 49698b201a
commit 2a03c69ff9
330 changed files with 39 additions and 58578 deletions

View File

@@ -1,12 +1,13 @@
CGO = 0
DESTDIR ?=
GOFLAGS ?= -v -ldflags "-w -X `go list`.Version=$(VERSION) -X `go list`.Commit=$(COMMIT)" -tags "static_build" -mod=vendor
GOFLAGS ?= -v -ldflags "-w -X `go list`.Version=$(VERSION) -X `go list`.Commit=$(COMMIT)" -mod=vendor -buildmode=exe
PREFIX ?= /usr/local
VERSION ?= `git describe --abbrev=0 --tags || echo "$VERSION"`
COMMIT ?= `git rev-parse --short HEAD || echo "$COMMIT"`
build:
go build ${GOFLAGS} ./cmd/aya
env CGO_ENABLED=${CGO} go build ${GOFLAGS} ./cmd/aya
clean:
rm -f aya
install: