From d8c3ff199eaca9603f912f75627ff2e43e004cdd Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 11 Dec 2006 03:35:10 +0000 Subject: [PATCH] Remove BBv1 for good [SVN r36321] --- example/Jamfile | 82 ----------------------------------------- example/Jamfile.v2 | 36 ------------------ example/Jamroot | 40 ++++++++++++++++++++ example/Jamrules | 36 ------------------ example/README | 19 +++------- example/boost-build.jam | 2 +- 6 files changed, 47 insertions(+), 168 deletions(-) delete mode 100644 example/Jamfile delete mode 100644 example/Jamfile.v2 create mode 100755 example/Jamroot delete mode 100755 example/Jamrules diff --git a/example/Jamfile b/example/Jamfile deleted file mode 100644 index 24303a6b..00000000 --- a/example/Jamfile +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright David Abrahams 2003-2006. Distributed under the Boost -# Software License, Version 1.0. (See accompanying -# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) - -# This is the top of our own project tree -project-root ; - -# Declares the following targets: -# -# 1. an extension module called "getting_started1", which is -# built from "getting_started1.cpp". Built by default -# -# 2. A test target called my-test.test which runs -# test_getting_started1.py with the extension module above. Built -# when out-of date, but only if invoked by name or if the global -# "test" target is invoked. -# -# 3. A test target called my-test.run wihch runs the above test -# unconditionally. Built only when invoked by name. -# -# To see verbose test output, add "-sPYTHON_TEST_ARGS=-v" to the bjam -# command-line before the first target. -# - -# Include definitions needed for Python modules -import python ; - -# ----- getting_started1 ------- - -# Declare a Python extension called getting_started1 -extension getting_started1 -: # sources - getting_started1.cpp - - # requirements and dependencies for Boost.Python extensions -