feat: add standalone client with FIFO command interface
This commit is contained in:
committed by
Loic Coenen (aider)
parent
5ad831f50c
commit
998406616a
22
Makefile
Normal file
22
Makefile
Normal file
@@ -0,0 +1,22 @@
|
||||
# Top‑level 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
|
||||
Reference in New Issue
Block a user