diff options
author | cbdev <cb@cbcdn.com> | 2021-05-01 14:45:12 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2021-05-01 14:45:12 +0200 |
commit | 6ae73a994b15be73c01ae5d6835297bcff7baa91 (patch) | |
tree | 24139b3e50ac1f181944e35167adb0541ce9dcf1 /backends/Makefile | |
parent | 91764dfc3ad86994ce27e5c80a92c034e12b849c (diff) | |
download | midimonster-6ae73a994b15be73c01ae5d6835297bcff7baa91.tar.gz midimonster-6ae73a994b15be73c01ae5d6835297bcff7baa91.tar.bz2 midimonster-6ae73a994b15be73c01ae5d6835297bcff7baa91.zip |
Basic kinet backend skeleton and analysiskinet
Diffstat (limited to 'backends/Makefile')
-rw-r--r-- | backends/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/backends/Makefile b/backends/Makefile index d815f84..5628b4b 100644 --- a/backends/Makefile +++ b/backends/Makefile @@ -2,9 +2,9 @@ # Backends that can only be built on Linux LINUX_BACKENDS = midi.so evdev.so # Backends that can only be built on Windows (mostly due to the .DLL extension) -WINDOWS_BACKENDS = artnet.dll osc.dll loopback.dll sacn.dll maweb.dll winmidi.dll openpixelcontrol.dll rtpmidi.dll wininput.dll visca.dll +WINDOWS_BACKENDS = artnet.dll osc.dll loopback.dll sacn.dll maweb.dll winmidi.dll openpixelcontrol.dll rtpmidi.dll wininput.dll visca.dll kinet.dll # Backends that can be built on any platform that can load .SO libraries -BACKENDS = artnet.so osc.so loopback.so sacn.so lua.so maweb.so jack.so openpixelcontrol.so python.so rtpmidi.so visca.so +BACKENDS = artnet.so osc.so loopback.so sacn.so lua.so maweb.so jack.so openpixelcontrol.so python.so rtpmidi.so visca.so kinet.so # Backends that require huge dependencies to be installed OPTIONAL_BACKENDS = ola.so # Backends that need to be built manually (but still should be included in the clean target) @@ -39,6 +39,10 @@ artnet.so: ADDITIONAL_OBJS += $(BACKEND_LIB) artnet.dll: ADDITIONAL_OBJS += $(BACKEND_LIB) artnet.dll: LDLIBS += -lws2_32 +kinet.so: ADDITIONAL_OBJS += $(BACKEND_LIB) +kinet.dll: ADDITIONAL_OBJS += $(BACKEND_LIB) +kinet.dll: LDLIBS += -lws2_32 + osc.so: ADDITIONAL_OBJS += $(BACKEND_LIB) osc.dll: ADDITIONAL_OBJS += $(BACKEND_LIB) osc.dll: LDLIBS += -lws2_32 |