summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-02 15:18:41 -0500
committerJeff Carr <[email protected]>2025-09-02 15:18:41 -0500
commitaa2483e255d68bfa6e19aae7531d2c28fb2f1253 (patch)
tree924b393008b54d2a65f3cb7b3f558df225b9890a /Makefile
parentaebfe325d63a947d936c069a8cffd3b2d631aeae (diff)
more changes to make import from gemini-cli work
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index edc546f..35867ad 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-all: clean chat.pb.go goimports vet
+all: clean chat.pb.go book.pb.go goimports vet
goimports:
goimports -w *.go
@@ -6,6 +6,9 @@ goimports:
chat.pb.go: chat.proto
autogenpb --proto chat.proto
+book.pb.go: book.proto
+ autogenpb --proto book.proto
+
clean:
rm -f *.pb.go *.patch
-rm -f go.*