From 313fd3cab7c40e8672b2523f2cafb0348de02fa2 Mon Sep 17 00:00:00 2001 From: ProofOfConcept Date: Fri, 3 Apr 2026 19:00:18 -0400 Subject: [PATCH] add Makefile, remove binary path search in supervisor make install builds and installs all workspace binaries (consciousness, consciousness-channel-irc, consciousness-channel-telegram). Co-Developed-By: Kent Overstreet --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d4b8ab1 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.PHONY: install build + +build: + cargo build --workspace + +install: + cargo install --path . + cargo install --path channels/irc + cargo install --path channels/telegram