fix: update transport access and function calls across engine, tui, and tests
Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
35
makefile
35
makefile
@@ -4,55 +4,58 @@ LDFLAGS = -ljack -lm -lncurses
|
||||
|
||||
all: jack-looper test_engine test_tui test_gui test_cli
|
||||
|
||||
jack-looper: main.o engine.o tui.o gui.o cli.o lib/microui.o
|
||||
jack-looper: main.o engine.o tui.o gui.o cli.o transport.o lib/microui.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_engine: test_engine.o engine.o
|
||||
test_engine: test_engine.o engine.o transport.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_tui: test_tui.o engine.o
|
||||
test_tui: test_tui.o engine.o transport.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_gui: test_gui.o gui.o engine.o lib/microui.o
|
||||
test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_cli: test_cli.o engine.o cli.o
|
||||
test_cli: test_cli.o engine.o cli.o transport.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_double_process: test_double_process.o engine.o
|
||||
test_double_process: test_double_process.o engine.o transport.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
main.o: main.c engine.h tui.h
|
||||
main.o: main.c engine.h tui.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
engine.o: engine.c engine.h
|
||||
engine.o: engine.c engine.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
tui.o: tui.c tui.h engine.h
|
||||
tui.o: tui.c tui.h engine.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
gui.o: gui.c gui.h engine.h lib/microui.h
|
||||
gui.o: gui.c gui.h engine.h transport.h lib/microui.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
lib/microui.o: lib/microui.c lib/microui.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
test_engine.o: test_engine.c engine.h
|
||||
transport.o: transport.c transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
test_tui.o: test_tui.c engine.h tui.h
|
||||
test_engine.o: test_engine.c engine.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
test_gui.o: test_gui.c gui.h engine.h
|
||||
test_tui.o: test_tui.c engine.h tui.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
test_cli.o: test_cli.c engine.h
|
||||
test_gui.o: test_gui.c gui.h engine.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
test_double_process.o: test_double_process.c engine.h
|
||||
test_cli.o: test_cli.c engine.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
cli.o: cli.c cli.h engine.h
|
||||
test_double_process.o: test_double_process.c engine.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
cli.o: cli.c cli.h engine.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
.PHONY: all clean test
|
||||
|
||||
Reference in New Issue
Block a user