diff options
Diffstat (limited to 'src/boost/tools/build/test/startup')
10 files changed, 58 insertions, 0 deletions
diff --git a/src/boost/tools/build/test/startup/boost-root/boost-build.jam b/src/boost/tools/build/test/startup/boost-root/boost-build.jam new file mode 100644 index 00000000..098889f7 --- /dev/null +++ b/src/boost/tools/build/test/startup/boost-root/boost-build.jam @@ -0,0 +1,7 @@ +# Copyright 2002 Dave Abrahams +# Copyright 2004 Vladimir Prus +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +# Emulate v1 behavior; with the boost-build file in the boost root directory. +boost-build build ; diff --git a/src/boost/tools/build/test/startup/boost-root/build/boost-build.jam b/src/boost/tools/build/test/startup/boost-root/build/boost-build.jam new file mode 100644 index 00000000..610ec79e --- /dev/null +++ b/src/boost/tools/build/test/startup/boost-root/build/boost-build.jam @@ -0,0 +1,6 @@ +# Copyright 2004 Vladimir Prus +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +# The presence of this file emulates the Boost 1.27.0 release +include $(BOOST_ROOT)/tools/build/bootstrap.jam ; diff --git a/src/boost/tools/build/test/startup/boost-root/build/bootstrap.jam b/src/boost/tools/build/test/startup/boost-root/build/bootstrap.jam new file mode 100644 index 00000000..2ee3507c --- /dev/null +++ b/src/boost/tools/build/test/startup/boost-root/build/bootstrap.jam @@ -0,0 +1,7 @@ +# Copyright 2004 Vladimir Prus +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +ECHO build system bootstrapped ; +DEPENDS all : nothing ; +NOTFILE nothing ; diff --git a/src/boost/tools/build/test/startup/bootstrap-env/boost-build.jam b/src/boost/tools/build/test/startup/bootstrap-env/boost-build.jam new file mode 100644 index 00000000..67a285e7 --- /dev/null +++ b/src/boost/tools/build/test/startup/bootstrap-env/boost-build.jam @@ -0,0 +1,5 @@ +# Copyright 2002 Dave Abrahams +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +boost-build ; diff --git a/src/boost/tools/build/test/startup/bootstrap-explicit/boost-build.jam b/src/boost/tools/build/test/startup/bootstrap-explicit/boost-build.jam new file mode 100644 index 00000000..27d9108b --- /dev/null +++ b/src/boost/tools/build/test/startup/bootstrap-explicit/boost-build.jam @@ -0,0 +1,6 @@ +# Copyright 2002 Dave Abrahams +# Copyright 2004 Vladimir Prus +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +boost-build ../boost-root/build ; diff --git a/src/boost/tools/build/test/startup/bootstrap-implicit/readme.txt b/src/boost/tools/build/test/startup/bootstrap-implicit/readme.txt new file mode 100644 index 00000000..0278716e --- /dev/null +++ b/src/boost/tools/build/test/startup/bootstrap-implicit/readme.txt @@ -0,0 +1,5 @@ +Copyright 2002 Dave Abrahams +Distributed under the Boost Software License, Version 1.0. +(See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +This file is only here so that cvs update -P won't fail to create a directory diff --git a/src/boost/tools/build/test/startup/no-bootstrap1/boost-build.jam b/src/boost/tools/build/test/startup/no-bootstrap1/boost-build.jam new file mode 100644 index 00000000..b1b4dc69 --- /dev/null +++ b/src/boost/tools/build/test/startup/no-bootstrap1/boost-build.jam @@ -0,0 +1,6 @@ +# Copyright 2002 Dave Abrahams +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +# Bootstrap file not found via implicit lookup in BOOST_BUILD_PATH +boost-build ; diff --git a/src/boost/tools/build/test/startup/no-bootstrap1/subdir/readme.txt b/src/boost/tools/build/test/startup/no-bootstrap1/subdir/readme.txt new file mode 100644 index 00000000..00f428d4 --- /dev/null +++ b/src/boost/tools/build/test/startup/no-bootstrap1/subdir/readme.txt @@ -0,0 +1,5 @@ +Copyright 2002 Dave Abrahams +Distributed under the Boost Software License, Version 1.0. +(See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +This file is only here so cvs update -P will create the directory. diff --git a/src/boost/tools/build/test/startup/no-bootstrap2/boost-build.jam b/src/boost/tools/build/test/startup/no-bootstrap2/boost-build.jam new file mode 100644 index 00000000..505dcd77 --- /dev/null +++ b/src/boost/tools/build/test/startup/no-bootstrap2/boost-build.jam @@ -0,0 +1,6 @@ +# Copyright 2002 Dave Abrahams +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +# Bootstrap file not found via explicit lookup in . +boost-build . ; diff --git a/src/boost/tools/build/test/startup/no-bootstrap3/boost-build.jam b/src/boost/tools/build/test/startup/no-bootstrap3/boost-build.jam new file mode 100644 index 00000000..252a3993 --- /dev/null +++ b/src/boost/tools/build/test/startup/no-bootstrap3/boost-build.jam @@ -0,0 +1,5 @@ +# Copyright 2002 Dave Abrahams +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +# Call to boost-build is intentionally missing |