From 650baa6f2bba66bfb7d64ac7b2f8a33a175ba99a Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Wed, 4 Oct 2000 03:23:42 +0000 Subject: [PATCH] Added LINKFORSHARED option to swig13 linking. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@913 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index db905b690..a49c7d20c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -17,6 +17,7 @@ CXX = @CXX@ LIBS = @LIBS@ AR = @AR@ RANLIB = @RANLIB@ +LINKFORSHARED = @LINKFORSHARED@ # Note: Files in `SWIG_LIB' are machine independent so we use `prefix' # instead of `exec_prefix' or, derivatively, `libdir'. @@ -47,7 +48,7 @@ experiment: Swig Preprocessor LParse Experiment DOH Modules swig13: Swig Preprocessor LParse SWIG1.3 DOH Modules - $(CXX) -o $(TARGET) \ + $(CXX) -o $(TARGET) $(LINKFORSHARED) \ $(SOURCE)/Modules/libmodules.a \ $(SOURCE)/SWIG1.3/libswig13.a \ $(SOURCE)/LParse/liblparse.a \