diff options
author | cbdev <cb@cbcdn.com> | 2019-09-17 22:08:14 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-09-17 22:08:14 +0200 |
commit | 1061c4a683df6ccef98c4307860d1c1db323131a (patch) | |
tree | 37d9b8009c05250f53a0d8ba6a109009dfe4210c /backends/Makefile | |
parent | 1c8d7c570678c2f4f3bf61529489336f9d085f8d (diff) | |
download | midimonster-1061c4a683df6ccef98c4307860d1c1db323131a.tar.gz midimonster-1061c4a683df6ccef98c4307860d1c1db323131a.tar.bz2 midimonster-1061c4a683df6ccef98c4307860d1c1db323131a.zip |
Publish winmidi backend
Diffstat (limited to 'backends/Makefile')
-rw-r--r-- | backends/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/backends/Makefile b/backends/Makefile index 5c5b677..293b434 100644 --- a/backends/Makefile +++ b/backends/Makefile @@ -1,6 +1,6 @@ .PHONY: all clean full LINUX_BACKENDS = midi.so evdev.so -WINDOWS_BACKENDS = artnet.dll osc.dll loopback.dll sacn.dll maweb.dll +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 BACKEND_LIB = libmmbackend.o @@ -38,6 +38,9 @@ maweb.dll: ADDITIONAL_OBJS += $(BACKEND_LIB) maweb.dll: LDLIBS += -lws2_32 maweb.dll: CFLAGS += -DMAWEB_NO_LIBSSL +winmidi.dll: ADDITIONAL_OBJS += $(BACKEND_LIB) +winmidi.dll: LDLIBS += -lwinmm -lws2_32 + midi.so: LDLIBS = -lasound evdev.so: CFLAGS += $(shell pkg-config --cflags libevdev) evdev.so: LDLIBS = $(shell pkg-config --libs libevdev) |