summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Bayer <bbayer@multitech.com>2015-12-14 13:20:23 -0600
committerBrandon Bayer <bbayer@multitech.com>2015-12-14 13:20:23 -0600
commit994c50e43c5a8169881a6529411cd9e92991bfd1 (patch)
treeba76530e378f9102e94ccc4a77afaed2c7e7360a
parent087df0460e13e9fc79dcae97c4749021f87ae667 (diff)
downloadlibmts-994c50e43c5a8169881a6529411cd9e92991bfd1.tar.gz
libmts-994c50e43c5a8169881a6529411cd9e92991bfd1.tar.bz2
libmts-994c50e43c5a8169881a6529411cd9e92991bfd1.zip
fix: add LDFLAGS to Makefile for shared lib build pre-gcc/++ 4.5 compiler (MTR)0.4
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 04855ef..00cb5d6 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,7 @@ libmts.a: $(OBJS)
libmts.so.0: $(OBJS)
@echo 'Building target: $@'
- $(CXX) -shared -Wl,-soname,$@ -o libmts.so.$(VERSION) $(OBJS) $(LIBS)
+ $(CXX) $(LDFLAGS) -shared -Wl,-soname,$@ -o libmts.so.$(VERSION) $(OBJS) $(LIBS)
@echo 'Finished building target: $@'
@echo ' '