aboutsummaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/makefile b/makefile
index 6819f7f..2101e96 100644
--- a/makefile
+++ b/makefile
@@ -1,17 +1,18 @@
.PHONY: clean
-BACKENDS = artnet.so midi.so osc.so
+BACKENDS = artnet.so midi.so osc.so loopback.so
OBJS = config.o backend.o plugin.o
PLUGINDIR = "\"./\""
-LDLIBS = -lasound -ldl
CFLAGS ?= -g -Wall
-
-midimonster: CFLAGS += -rdynamic -DPLUGINS=$(PLUGINDIR)
%.so: CFLAGS += -fPIC
%.so: LDFLAGS += -shared
+midimonster: LDLIBS = -ldl
+midimonster: CFLAGS += -rdynamic -DPLUGINS=$(PLUGINDIR)
+midi.so: LDLIBS = -lasound
+
%.so :: %.c %.h
- $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
+ $(CC) $(CFLAGS) $(LDLIBS) $< -o $@ $(LDFLAGS)
all: midimonster $(BACKENDS)