From 7367d79a09769ce671823446f93ec5d318e6a660 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 23 Mar 2001 05:29:13 +0000 Subject: [PATCH] build boost_python.lib [SVN r9636] --- build/vc60.mak | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build/vc60.mak b/build/vc60.mak index 7cd463c2..2db38393 100644 --- a/build/vc60.mak +++ b/build/vc60.mak @@ -13,7 +13,7 @@ PYEXE= "C:\Program files\Python\python.exe" PYINC= /I"C:\Program files\Python\include" PYLIB= "C:\Program files\Python\libs\python15.lib" -STDOPTS= /nologo /MD /GR /GX /FD /Zm200 +STDOPTS= /nologo /MD /GR /GX /Zm200 WARNOPTS= CPP= cl.exe @@ -29,7 +29,7 @@ OBJ = classes.obj conversions.obj extension_class.obj functions.obj \ .SUFFIXES: .obj .cpp -all: libboost_python.a \ +all: boost_python.lib \ boost_python_test.pyd \ abstract.pyd \ getting_started1.pyd getting_started2.pyd getting_started3.pyd \ @@ -39,7 +39,8 @@ all: libboost_python.a \ noncopyable_export.pyd noncopyable_import.pyd \ ivect.pyd dvect.pyd -libboost_python.a: $(OBJ) +boost_python.lib: $(OBJ) + $(LD) -lib /nologo /out:boost_python.lib $(OBJ) boost_python_test.pyd: $(OBJ) comprehensive.obj $(LD) $(LDOPTS) $(OBJ) comprehensive.obj $(PYLIB) /export:initboost_python_test /out:"boost_python_test.pyd"