diff --git a/build/Jamfile.v2 b/build/Jamfile.v2
index ab40a949..66427745 100644
--- a/build/Jamfile.v2
+++ b/build/Jamfile.v2
@@ -26,7 +26,7 @@ project boost/python
;
lib boost_python
- :
+ : # sources
numeric.cpp
list.cpp
long.cpp
@@ -56,10 +56,15 @@ lib boost_python
wrapper.cpp
import.cpp
exec.cpp
- : static:BOOST_PYTHON_STATIC_LIB
+ : # requirements
+ static:BOOST_PYTHON_STATIC_LIB
BOOST_PYTHON_SOURCE
- /python//python
- : shared
+ /python//python
+ : # default build
+ shared
+ : # usage requirements
+ static:BOOST_PYTHON_STATIC_LIB
+ shared:BOOST_PYTHON_DYNAMIC_LIB
;
}
else