diff options
| author | Clawd <ai@clawd.bot> | 2026-03-05 07:29:00 -0800 |
|---|---|---|
| committer | Clawd <ai@clawd.bot> | 2026-03-05 07:29:00 -0800 |
| commit | f1ff85c7acad6b2ae7ec10720619ef2023cb7dc9 (patch) | |
| tree | 5e694f4a2e864c9fcdfcbb1ab869c3bae05b50e3 /Makefile | |
| parent | 03d8f49479b3446cf7f8ab9b6fdb2401584e3f12 (diff) | |
Implement core: walker, chunker, embedder, index, CLI
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 |
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 | |||
| 3 | BINARY := codevec | ||
| 4 | BUILD_DIR := bin | ||
| 5 | |||
| 6 | build: | ||
| 7 | go build -o $(BUILD_DIR)/$(BINARY) ./cmd/codevec | ||
| 8 | |||
| 9 | install: build | ||
| 10 | cp $(BUILD_DIR)/$(BINARY) ~/.local/bin/ | ||
| 11 | |||
| 12 | clean: | ||
| 13 | rm -rf $(BUILD_DIR) | ||
