aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 60534ba..cda8fae 100644
--- a/Makefile
+++ b/Makefile
@@ -2,11 +2,20 @@
OBJS = config.o backend.o plugin.o
PLUGINDIR = "\"./backends/\""
+SYSTEM := $(shell uname -s)
+
CFLAGS ?= -g -Wall
#CFLAGS += -DDEBUG
midimonster: LDLIBS = -ldl
midimonster: CFLAGS += -DPLUGINS=$(PLUGINDIR)
+
+# Work around strange linker passing convention differences in Linux and OSX
+ifeq ($(SYSTEM),Linux)
midimonster: LDFLAGS += -Wl,-export-dynamic
+endif
+ifeq ($(SYSTEM),Darwin)
+midimonster: LDFLAGS += -Wl,-export_dynamic
+endif
all: midimonster backends