diff options
author | jhatch <jhatch@multitech.com> | 2015-10-19 12:54:08 -0500 |
---|---|---|
committer | jhatch <jhatch@multitech.com> | 2015-10-19 12:54:08 -0500 |
commit | b04660d92099a1e1f1db3aa4d710c662e074b7bf (patch) | |
tree | ffebb6826338bb4f54875b40a29e199bbde5dd85 | |
parent | c4d5c5e699743fa5a30f85f16edf2a3700099a78 (diff) | |
download | libmts-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)
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ' ' |