From 35e6e2b17cdbccfea7352b3129a8ab7200c139a2 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 10:31:51 +0000 Subject: [PATCH] fix: add missing wav_io.o to test_gui link target Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index da6e14d..d1662e8 100644 --- a/makefile +++ b/makefile @@ -13,7 +13,7 @@ test_engine: test_engine.o engine.o transport.o wav_io.o test_tui: test_tui.o engine.o transport.o wav_io.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o +test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o wav_io.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_cli: test_cli.o engine.o cli.o transport.o wav_io.o