aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSven Moritz Hallberg <pesco@khjk.org>2011-05-01 19:07:24 +0200
committerSven Moritz Hallberg <pesco@khjk.org>2011-05-01 19:07:24 +0200
commit2ffc41eab67c061656c8fc3a70ef59e6b5527fdb (patch)
tree1bd0ccc2e038e5dd6846db56f4f0ebfa1e4d8515 /Makefile
parent69ef042b64ac1cb2f771d3ae02f27a7e64951222 (diff)
honor LDFLAGS in otr.so make rule
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0a3d1677..cb682287 100644
--- a/Makefile
+++ b/Makefile
@@ -138,7 +138,7 @@ $(subdirs):
$(OTR_PI): %.so: $(SRCDIR)%.c
@echo '*' Building plugin $@
- @$(CC) $(CFLAGS) $(OTRFLAGS) -fPIC -shared $< -o $@
+ @$(CC) $(CFLAGS) $(OTRFLAGS) -fPIC -shared $(LDFLAGS) $< -o $@
$(objects): %.o: $(SRCDIR)%.c
@echo '*' Compiling $<