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:
6
makefile
6
makefile
@@ -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 $@ $<
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user