summaryrefslogtreecommitdiff
path: root/Examples/python/import/Makefile
diff options
context:
space:
mode:
authorJohn Lenz <jlenz2@math.uiuc.edu>2004-10-17 19:56:35 +0000
committerJohn Lenz <jlenz2@math.uiuc.edu>2004-10-17 19:56:35 +0000
commitd33f398c630e1f996b077ae676e1019e5239cc7c (patch)
tree82f6bb36e7c9cc34b117ea9c29053d7ca7313e61 /Examples/python/import/Makefile
parent08100cf196abca7acf4c13e5a04a3f3e4ea441da (diff)
downloadswig-d33f398c630e1f996b077ae676e1019e5239cc7c.tar.gz
Update Examples to not build runtime library
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6415 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/python/import/Makefile')
-rw-r--r--Examples/python/import/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/Examples/python/import/Makefile b/Examples/python/import/Makefile
index 7b2b72103..fa49f3145 100644
--- a/Examples/python/import/Makefile
+++ b/Examples/python/import/Makefile
@@ -1,11 +1,9 @@
TOP = ../..
-SWIG = $(TOP)/../swig
-SWIGOPT = -noruntime
-LIBS = -L. -l_runtime
+SWIG = $(TOP)/../preinst-swig
+SWIGOPT =
+LIBS =
all::
- $(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='-runtime' \
- LIBPREFIX='lib' TARGET='runtime' INTERFACE='runtime.i' python_cpp
$(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
LIBS='$(LIBS)' TARGET='base' INTERFACE='base.i' python_cpp
$(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
@@ -18,6 +16,6 @@ all::
clean::
$(MAKE) -f $(TOP)/Makefile python_clean
- @rm -f foo.py bar.py spam.py base.py runtime.py
+ @rm -f foo.py bar.py spam.py base.py
check: all