Blame boost-build.jam

Packit 58578d
# Copyright (C) 2002-2003 David Abrahams.
Packit 58578d
# Copyright (C) 2002-2003 Vladimir Prus.
Packit 58578d
# Copyright (C) 2003,2007 Rene Rivera.
Packit 58578d
# Use, modification and distribution are subject to the
Packit 58578d
# Boost Software License, Version 1.0. (See accompanying file
Packit 58578d
# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Packit 58578d
Packit 58578d
#   This is the initial file loaded by Boost Jam when run from any Boost library
Packit 58578d
# folder. It allows us to choose which Boost Build installation to use for
Packit 58578d
# building Boost libraries. Unless explicitly selected using a command-line
Packit 58578d
# option, the version included with the Boost library distribution is used (as
Packit 58578d
# opposed to any other Boost Build version installed on the user's sytem).
Packit 58578d
Packit 58578d
BOOST_ROOT = $(.boost-build-file:D) ;
Packit 58578d
BOOST_BUILD = [ MATCH --boost-build=(.*) : $(ARGV) ] ;
Packit 58578d
BOOST_BUILD ?= tools/build/src ;
Packit 58578d
boost-build $(BOOST_BUILD) ;