1# Boost System Library Build Jamfile
2
3# (C) Copyright Beman Dawes 2002, 2006
4
5# Distributed under the Boost Software License, Version 1.0.
6# (See accompanying file LICENSE_1_0.txt or www.boost.org/LICENSE_1_0.txt)
7
8# See library home page at http://www.boost.org/libs/system
9
10project boost/system
11    : source-location ../src
12    : usage-requirements  # pass these requirement to dependents (i.e. users)
13      <link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
14      <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
15    ;
16
17SOURCES = error_code ;
18
19lib boost_system
20   : $(SOURCES).cpp
21   : <link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
22     <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
23   ;
24
25boost-install boost_system ;
26