9aab79d49b
- Remove v1 Python CLI (src/kb_search/, tests/, root pyproject.toml, uv.lock, .venv) - Add Go client with cross-platform build (client/) - Add FastAPI engine with NVIDIA and multi-stage ROCm Dockerfiles (engine/) - Add VERSION files for client and engine, wired into builds - Add release.sh for automated build, tag, release, and Docker push - Update README with build/release docs and ROCm migration note - Clean up .gitignore for v2 project structure Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
551 B
Makefile
21 lines
551 B
Makefile
VERSION ?= $(shell cat VERSION 2>/dev/null || echo "dev")
|
|
LDFLAGS := -ldflags "-s -w -X github.com/kb-search/kb/cmd.Version=$(VERSION)"
|
|
|
|
PLATFORMS := linux/amd64 linux/arm64 darwin/amd64 darwin/arm64 windows/amd64
|
|
|
|
.PHONY: build clean all
|
|
|
|
build:
|
|
go build $(LDFLAGS) -o kb .
|
|
|
|
all: $(PLATFORMS)
|
|
|
|
$(PLATFORMS):
|
|
$(eval OS := $(word 1,$(subst /, ,$@)))
|
|
$(eval ARCH := $(word 2,$(subst /, ,$@)))
|
|
$(eval EXT := $(if $(filter windows,$(OS)),.exe,))
|
|
GOOS=$(OS) GOARCH=$(ARCH) go build $(LDFLAGS) -o dist/kb-$(OS)-$(ARCH)$(EXT) .
|
|
|
|
clean:
|
|
rm -rf kb dist/
|