feat: add project save/load with .wheel files and auto-save thread
Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
17
makefile
17
makefile
@@ -4,22 +4,22 @@ LDFLAGS = -ljack -lm -lncurses -lpthread
|
||||
|
||||
all: jack-looper test_engine test_tui test_gui test_cli test_stress test_wav_io
|
||||
|
||||
jack-looper: main.o engine.o tui.o gui.o cli.o transport.o dispatcher.o lib/microui.o wav_io.o carla.o
|
||||
jack-looper: main.o engine.o tui.o gui.o cli.o transport.o dispatcher.o lib/microui.o wav_io.o carla.o fs.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_engine: test_engine.o engine.o transport.o wav_io.o dispatcher.o carla.o
|
||||
test_engine: test_engine.o engine.o transport.o wav_io.o dispatcher.o carla.o fs.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_tui: test_tui.o engine.o transport.o wav_io.o dispatcher.o carla.o
|
||||
test_tui: test_tui.o engine.o transport.o wav_io.o dispatcher.o carla.o fs.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o wav_io.o dispatcher.o carla.o
|
||||
test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o wav_io.o dispatcher.o carla.o fs.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_cli: test_cli.o engine.o cli.o transport.o wav_io.o dispatcher.o carla.o
|
||||
test_cli: test_cli.o engine.o cli.o transport.o wav_io.o dispatcher.o carla.o fs.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_stress: test_stress.o engine.o wav_io.o dispatcher.o carla.o
|
||||
test_stress: test_stress.o engine.o wav_io.o dispatcher.o carla.o fs.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_wav_io: test_wav_io.o wav_io.o
|
||||
@@ -52,7 +52,10 @@ transport.o: transport.c transport.h
|
||||
carla.o: carla.c carla.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
dispatcher.o: dispatcher.c dispatcher.h carla.h
|
||||
dispatcher.o: dispatcher.c dispatcher.h carla.h fs.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
fs.o: fs.c fs.h dispatcher.h wav_io.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
test_engine.o: test_engine.c engine.h transport.h dispatcher.h
|
||||
|
||||
Reference in New Issue
Block a user