fix: add dispatcher.o to makefile to resolve linker errors

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-02 14:40:28 +00:00
parent 02152b4491
commit 63b37aec60

View File

@@ -52,6 +52,9 @@ lib/microui.o: lib/microui.c lib/microui.h
transport.o: transport.c transport.h
$(CC) $(CFLAGS) -c -o $@ $<
dispatcher.o: dispatcher.c dispatcher.h
$(CC) $(CFLAGS) -c -o $@ $<
test_engine.o: test_engine.c engine.h transport.h
$(CC) $(CFLAGS) -c -o $@ $<