fix: add missing dispatcher.h dependency to test object files

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-02 22:19:30 +00:00
parent 68b22b3a28
commit c127fe6f8f

View File

@@ -55,16 +55,16 @@ carla.o: carla.c carla.h
dispatcher.o: dispatcher.c dispatcher.h carla.h dispatcher.o: dispatcher.c dispatcher.h carla.h
$(CC) $(CFLAGS) -c -o $@ $< $(CC) $(CFLAGS) -c -o $@ $<
test_engine.o: test_engine.c engine.h transport.h test_engine.o: test_engine.c engine.h transport.h dispatcher.h
$(CC) $(CFLAGS) -c -o $@ $< $(CC) $(CFLAGS) -c -o $@ $<
test_tui.o: test_tui.c engine.h tui.h transport.h test_tui.o: test_tui.c engine.h tui.h transport.h dispatcher.h
$(CC) $(CFLAGS) -c -o $@ $< $(CC) $(CFLAGS) -c -o $@ $<
test_gui.o: test_gui.c gui.h engine.h transport.h test_gui.o: test_gui.c gui.h engine.h transport.h
$(CC) $(CFLAGS) -c -o $@ $< $(CC) $(CFLAGS) -c -o $@ $<
test_cli.o: test_cli.c engine.h transport.h test_cli.o: test_cli.c engine.h transport.h dispatcher.h
$(CC) $(CFLAGS) -c -o $@ $< $(CC) $(CFLAGS) -c -o $@ $<