feat: add engine alive indicator, debug mode, and orchestrator retry logic
This commit is contained in:
committed by
Loic Coenen (aider)
parent
e79c2ac116
commit
f2993eac80
7
makefile
7
makefile
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user