aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClawd <ai@clawd.bot>2026-03-05 07:29:00 -0800
committerClawd <ai@clawd.bot>2026-03-05 07:29:00 -0800
commitf1ff85c7acad6b2ae7ec10720619ef2023cb7dc9 (patch)
tree5e694f4a2e864c9fcdfcbb1ab869c3bae05b50e3 /Makefile
parent03d8f49479b3446cf7f8ab9b6fdb2401584e3f12 (diff)
Implement core: walker, chunker, embedder, index, CLI
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5f37491
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
1.PHONY: build install clean
2
3BINARY := codevec
4BUILD_DIR := bin
5
6build:
7 go build -o $(BUILD_DIR)/$(BINARY) ./cmd/codevec
8
9install: build
10 cp $(BUILD_DIR)/$(BINARY) ~/.local/bin/
11
12clean:
13 rm -rf $(BUILD_DIR)