fix: remove duplicate engine implementation and unused GUI code
Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
11
makefile
11
makefile
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user