diff options
author | cbdev <cb@cbcdn.com> | 2019-11-06 18:50:57 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-11-06 18:50:57 +0100 |
commit | ff587cb77ee4a7e9169affbfefd84547da6fea38 (patch) | |
tree | fefa6e701021af25aee8371ede8682d554fd768c /backends/Makefile | |
parent | 24e5594c754ec74918848d33d513db69d54aba47 (diff) | |
download | midimonster-ff587cb77ee4a7e9169affbfefd84547da6fea38.tar.gz midimonster-ff587cb77ee4a7e9169affbfefd84547da6fea38.tar.bz2 midimonster-ff587cb77ee4a7e9169affbfefd84547da6fea38.zip |
Implement JACK backend
Diffstat (limited to 'backends/Makefile')
-rw-r--r-- | backends/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/Makefile b/backends/Makefile index 293b434..c5755c9 100644 --- a/backends/Makefile +++ b/backends/Makefile @@ -1,5 +1,5 @@ .PHONY: all clean full -LINUX_BACKENDS = midi.so evdev.so +LINUX_BACKENDS = midi.so evdev.so jack.so WINDOWS_BACKENDS = artnet.dll osc.dll loopback.dll sacn.dll maweb.dll winmidi.dll BACKENDS = artnet.so osc.so loopback.so sacn.so lua.so maweb.so OPTIONAL_BACKENDS = ola.so @@ -41,6 +41,7 @@ maweb.dll: CFLAGS += -DMAWEB_NO_LIBSSL winmidi.dll: ADDITIONAL_OBJS += $(BACKEND_LIB) winmidi.dll: LDLIBS += -lwinmm -lws2_32 +jack.so: LDLIBS = -ljack -lpthread midi.so: LDLIBS = -lasound evdev.so: CFLAGS += $(shell pkg-config --cflags libevdev) evdev.so: LDLIBS = $(shell pkg-config --libs libevdev) |