feat: add standalone client with FIFO command interface

This commit is contained in:
Loic Coenen
2026-05-13 19:48:53 +00:00
committed by Loic Coenen (aider)
parent 5ad831f50c
commit 998406616a
5 changed files with 127 additions and 1499 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
# Toplevel Makefile delegates build/clean/test to subdirectories
SUBDIRS = engine client
.PHONY: all build clean test $(SUBDIRS)
all: build
build: $(SUBDIRS)
@echo "Build complete."
$(SUBDIRS):
$(MAKE) -C $@
test:
$(MAKE) -C engine test
clean:
@for dir in $(SUBDIRS); do \
echo "Cleaning $$dir..."; \
$(MAKE) -C $$dir clean; \
done