feat: add client tests, status FIFO, and evaluation docs

This commit is contained in:
Loic Coenen
2026-05-14 14:12:50 +00:00
committed by Loic Coenen (aider)
parent 998406616a
commit 791744beeb
14 changed files with 333 additions and 83 deletions

23
makefile Normal file
View File

@@ -0,0 +1,23 @@
# 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
$(MAKE) -C client test
clean:
@for dir in $(SUBDIRS); do \
echo "Cleaning $$dir..."; \
$(MAKE) -C $$dir clean; \
done