We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15b5dcf commit 0f9009bCopy full SHA for 0f9009b
.gitignore
@@ -5,3 +5,4 @@ snapshot2-*.log
5
.aider*
6
schema.yaml
7
**/.claude/settings.local.json
8
+out
Makefile
@@ -1,5 +1,6 @@
1
CHAT_SOURCES_STAMP = chat/.sources.stamp
2
CHAT_SOURCES = $(shell find chat \( -path chat/node_modules -o -path chat/out -o -path chat/.next \) -prune -o -not -path chat/.sources.stamp -type f -print)
3
+BINPATH ?= out/agentapi
4
$(CHAT_SOURCES_STAMP): $(CHAT_SOURCES)
@echo "Chat sources changed. Running build steps..."
@@ -14,4 +15,4 @@ embed: $(CHAT_SOURCES_STAMP)
14
15
16
.PHONY: build
17
build: embed
- go build -o agentapi main.go
18
+ go build -o ${BINPATH} main.go
0 commit comments