aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJan Düpmeier <j.duepmeier@googlemail.com>2017-11-07 11:41:49 +0100
committerJan Düpmeier <j.duepmeier@googlemail.com>2017-11-07 11:41:49 +0100
commit341c671d8e55bdf21b39ab51c9ee21b3d0752e0d (patch)
tree510bbee5677860deabc2dd126baf0ac1931ea1b4
parent5793f6010fb6deb5d44be851adf7a2ecdcc38896 (diff)
downloadmidimonster-341c671d8e55bdf21b39ab51c9ee21b3d0752e0d.tar.gz
midimonster-341c671d8e55bdf21b39ab51c9ee21b3d0752e0d.tar.bz2
midimonster-341c671d8e55bdf21b39ab51c9ee21b3d0752e0d.zip
adding uinput to makefile
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index 2101e96..17faeb0 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,5 @@
.PHONY: clean
-BACKENDS = artnet.so midi.so osc.so loopback.so
+BACKENDS = artnet.so midi.so osc.so loopback.so uinput.so
OBJS = config.o backend.o plugin.o
PLUGINDIR = "\"./\""
@@ -11,6 +11,7 @@ midimonster: LDLIBS = -ldl
midimonster: CFLAGS += -rdynamic -DPLUGINS=$(PLUGINDIR)
midi.so: LDLIBS = -lasound
+
%.so :: %.c %.h
$(CC) $(CFLAGS) $(LDLIBS) $< -o $@ $(LDFLAGS)