fix: remove duplicate engine implementation and unused GUI code

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-01 14:04:50 +00:00
parent 02c491ccd2
commit 01998dd1a0
3 changed files with 4 additions and 130 deletions

View File

@@ -13,9 +13,6 @@ test_engine: test_engine.o engine.o
test_tui: test_tui.o engine.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_gui: test_gui.o engine.o gui.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
main.o: main.c engine.h tui.h
$(CC) $(CFLAGS) -c -o $@ $<
@@ -34,15 +31,11 @@ test_engine.o: test_engine.c engine.h
test_tui.o: test_tui.c engine.h tui.h
$(CC) $(CFLAGS) -c -o $@ $<
test_gui.o: test_gui.c engine.h gui.h
$(CC) $(CFLAGS) -c -o $@ $<
.PHONY: all clean test
clean:
rm -f *.o jack-looper test_engine test_tui test_gui
rm -f *.o jack-looper test_engine test_tui
test: test_engine test_tui test_gui
test: test_engine test_tui
./test_engine
./test_tui
./test_gui