summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjhatch <jhatch@multitech.com>2015-10-19 12:54:08 -0500
committerjhatch <jhatch@multitech.com>2015-10-19 12:54:08 -0500
commitb04660d92099a1e1f1db3aa4d710c662e074b7bf (patch)
treeffebb6826338bb4f54875b40a29e199bbde5dd85 /Makefile
parentc4d5c5e699743fa5a30f85f16edf2a3700099a78 (diff)
downloadlibmts-io-b04660d92099a1e1f1db3aa4d710c662e074b7bf.tar.gz
libmts-io-b04660d92099a1e1f1db3aa4d710c662e074b7bf.tar.bz2
libmts-io-b04660d92099a1e1f1db3aa4d710c662e074b7bf.zip
Update Makefile to add () for shared lib build pre-gcc/++ 4.5 compiler (MTR)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fe019f8..fb77410 100644
--- a/Makefile
+++ b/Makefile
@@ -51,7 +51,7 @@ libmts-io.a: $(OBJS)
libmts-io.so.0: $(OBJS)
@echo 'Building target: $@'
- $(CXX) -shared -Wl,-soname,$@ -o libmts-io.so.$(VERSION) $(OBJS)
+ $(CXX) $(LDFLAGS) -shared -Wl,-soname,$@ -o libmts-io.so.$(VERSION) $(OBJS)
@echo 'Finished building target: $@'
@echo ' '