From 93e4bdde14a5339e3f20ffb7f986526bec241852 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Fri, 1 May 2026 16:24:22 +0000 Subject: [PATCH] build: add test_double_process target to Makefile Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 9621a2d..3237520 100644 --- a/makefile +++ b/makefile @@ -19,6 +19,9 @@ test_gui: test_gui.o gui.o engine.o lib/microui.o test_cli: test_cli.o engine.o cli.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) +test_double_process: test_double_process.o engine.o + $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) + main.o: main.c engine.h tui.h $(CC) $(CFLAGS) -c -o $@ $< @@ -46,6 +49,9 @@ test_gui.o: test_gui.c gui.h engine.h test_cli.o: test_cli.c engine.h $(CC) $(CFLAGS) -c -o $@ $< +test_double_process.o: test_double_process.c engine.h + $(CC) $(CFLAGS) -c -o $@ $< + cli.o: cli.c cli.h engine.h $(CC) $(CFLAGS) -c -o $@ $< @@ -54,7 +60,8 @@ cli.o: cli.c cli.h engine.h clean: rm -f *.o lib/microui.o jack-looper test_engine test_tui test_gui test_cli -test: test_engine test_tui test_cli +test: test_engine test_tui test_cli test_double_process ./test_engine ./test_tui ./test_cli + ./test_double_process