From 08c909fd410df8ea9d837996034e0edb6edd3dce Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Thu, 14 Feb 2002 04:08:20 +0000 Subject: [PATCH] Updated the basic Jamfiles for the new Boost.Build changes. [SVN r12798] --- build/Jamfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build/Jamfile b/build/Jamfile index 7dd6ecfe..c9f6fa75 100644 --- a/build/Jamfile +++ b/build/Jamfile @@ -66,7 +66,7 @@ local PYTHON_PROPERTIES = $(PYTHON_PROPERTIES) BOOST_PYTHON_DYNAMIC_LIB ####################### rule bpl-test ( test-name : sources + ) { - boost-python-test $(test-name) : $(sources) libboost_python ; + boost-python-test $(test-name) : $(sources) boost_python ; } ####################### @@ -81,14 +81,14 @@ local CPP_SOURCES = init_function module_builder objects cross_module errors ; -lib libboost_python_static : ../src/$(CPP_SOURCES).cpp +lib boost_python_static : ../src/$(CPP_SOURCES).cpp # requirements : $(BOOST_PYTHON_INCLUDES) true BOOST_PYTHON_STATIC_LIB=1 $(PYTHON_PROPERTIES) ; -dll libboost_python +dll boost_python # $(SUFDLL[1]) : ../src/$(CPP_SOURCES).cpp # requirements @@ -104,7 +104,7 @@ bpl-test boost_python_test : ../test/comprehensive.cpp ; boost-python-runtest comprehensive - : ../test/comprehensive.py boost_python_test libboost_python ; + : ../test/comprehensive.py boost_python_test boost_python ; ############# simple tests from ../example ############ @@ -114,7 +114,7 @@ rule boost-python-example-runtest ( name ) : ../example/$(name).cpp ; boost-python-runtest $(name) - : ../example/test_$(name).py $(name) ; + : ../example/test_$(name).py $(name) ; } @@ -139,7 +139,7 @@ bpl-test noncopyable_import : ../example/noncopyable_import.cpp ; rule boost-python-multi-example-runtest ( test-name : modules + ) { boost-python-runtest $(test-name) - : ../example/tst_$(test-name).py $(modules) libboost_python + : ../example/tst_$(test-name).py $(modules) boost_python : : : $(PYTHON_VECT_ITERATIONS) ; }