feat: integrate Carla plugin host with rack view, fuzzy search, and volume control
Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
11
makefile
11
makefile
@@ -4,7 +4,7 @@ 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
|
||||
jack-looper: main.o engine.o tui.o gui.o cli.o transport.o dispatcher.o lib/microui.o wav_io.o carla.o
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test_engine: test_engine.o engine.o transport.o wav_io.o dispatcher.o
|
||||
@@ -34,13 +34,13 @@ test_stress.o: test_stress.c dispatcher.h engine.h wav_io.h
|
||||
main.o: main.c engine.h tui.h transport.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
engine.o: engine.c engine.h transport.h wav_io.h
|
||||
engine.o: engine.c engine.h transport.h wav_io.h carla.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
wav_io.o: wav_io.c wav_io.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
tui.o: tui.c tui.h engine.h transport.h
|
||||
tui.o: tui.c tui.h engine.h transport.h carla.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
gui.o: gui.c gui.h engine.h transport.h lib/microui.h
|
||||
@@ -52,7 +52,10 @@ 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
|
||||
carla.o: carla.c carla.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
dispatcher.o: dispatcher.c dispatcher.h carla.h
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
test_engine.o: test_engine.c engine.h transport.h
|
||||
|
||||
Reference in New Issue
Block a user