feat: add engine alive indicator, debug mode, and orchestrator retry logic

This commit is contained in:
Loic Coenen
2026-05-20 20:59:58 +00:00
committed by Loic Coenen (aider)
parent e79c2ac116
commit f2993eac80
5 changed files with 139 additions and 28 deletions

View File

@@ -1,8 +1,10 @@
# Top-level Makefile delegates build/clean/test to subdirectories
CC ?= gcc
SUBDIRS = engine client
.PHONY: all build clean test check format orchestrator $(SUBDIRS)
.PHONY: all build clean test check format orchestrator run $(SUBDIRS)
all: build orchestrator
@@ -15,6 +17,9 @@ orchestrator: orchestrator.c
$(SUBDIRS):
$(MAKE) -C $@
run: orchestrator
./looper
test:
# $(MAKE) -C engine test
$(MAKE) -C client test