From c509c3fbadcb71d4f7f30e331e6ddd8d6a495ce6 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 6 Nov 2006 17:10:46 +0000 Subject: [PATCH] Remove obsolete Boost.Build v1 files. [SVN r35880] --- minmax/example/Jamfile | 14 ------- minmax/test/Jamfile | 33 ---------------- string/example/Jamfile | 75 ------------------------------------- string/test/Jamfile | 85 ------------------------------------------ 4 files changed, 207 deletions(-) delete mode 100644 minmax/example/Jamfile delete mode 100644 minmax/test/Jamfile delete mode 100644 string/example/Jamfile delete mode 100644 string/test/Jamfile diff --git a/minmax/example/Jamfile b/minmax/example/Jamfile deleted file mode 100644 index 6cb2e55..0000000 --- a/minmax/example/Jamfile +++ /dev/null @@ -1,14 +0,0 @@ -# Boost.Minmax Library Example Jamfile -# -# Copyright (C) 2002--2004, Herve Bronnimann -# -# Use, modification, and distribution is subject to 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) -# - -subproject libs/algorithm/minmax/example ; - -exe minmax_ex : minmax_ex.cpp ; -exe minmax_timer : minmax_timer.cpp ; - diff --git a/minmax/test/Jamfile b/minmax/test/Jamfile deleted file mode 100644 index 1a4e85b..0000000 --- a/minmax/test/Jamfile +++ /dev/null @@ -1,33 +0,0 @@ -# Boost.Minmax Library Test Jamfile -# -# Copyright (C) 2002--2004, Herve Bronnimann -# -# Use, modification, and distribution is subject to 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) -# - -subproject libs/algorithm/minmax/test ; - -# bring in rules for testing -import testing ; - -# Make tests run by default. -DEPENDS all : test ; - -{ - test-suite algorithm/minmax - : [ run - minmax_element_test.cpp - : : - : - : minmax_element - ] - [ run - minmax_test.cpp - : : - : - : minmax - ] - ; -} diff --git a/string/example/Jamfile b/string/example/Jamfile deleted file mode 100644 index ac5a52d..0000000 --- a/string/example/Jamfile +++ /dev/null @@ -1,75 +0,0 @@ -# Boost string_algo library examples Jamfile --------------------------------- -# -# Copyright Pavol Droba 2002-2003. Use, modification and -# distribution is subject to 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) -# -# See http://www.boost.org for updates, documentation, and revision history. - -subproject libs/algorithm/string/example ; - -exe conv_example - : - conv_example.cpp - : - $(BOOST_ROOT) - : - ; - -exe predicate_example - : - predicate_example.cpp - : - $(BOOST_ROOT) - : - ; - -exe find_example - : - find_example.cpp - : - $(BOOST_ROOT) - : - ; - -exe replace_example - : - replace_example.cpp - : - $(BOOST_ROOT) - : - ; - -exe rle_example - : - rle_example.cpp - : - $(BOOST_ROOT) - : - ; - -exe trim_example - : - trim_example.cpp - : - $(BOOST_ROOT) - : - ; - -exe regex_example - : - regex_example.cpp - ../../../regex/build/boost_regex - : - $(BOOST_ROOT) - : - ; - -exe split_example - : - split_example.cpp - : - $(BOOST_ROOT) - : - ; diff --git a/string/test/Jamfile b/string/test/Jamfile deleted file mode 100644 index 301f2fb..0000000 --- a/string/test/Jamfile +++ /dev/null @@ -1,85 +0,0 @@ -# Boost string_algo library test suite Jamfile ---------------------------- -# -# Copyright Pavol Droba 2002-2003. Use, modification and -# distribution is subject to 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) -# -# See http://www.boost.org for updates, documentation, and revision history. - -subproject libs/algorithm/string/test ; - -# bring in rules for testing -import testing ; - -# Make tests run by default. -DEPENDS all : test ; - -{ - test-suite algorithm/string - : [ run - trim_test.cpp - : : - : - std::locale-support - std::facet-support - : trim - ] - [ run - conv_test.cpp - : : - : - std::locale-support - std::facet-support - : conv - ] - [ run - predicate_test.cpp - : : - : - std::locale-support - std::facet-support - : predicate - ] - [ run - find_test.cpp - : : - : - std::locale-support - std::facet-support - : find - ] - [ run - split_test.cpp - : : - : - std::locale-support - std::facet-support - : split - ] - [ run - join_test.cpp - : : - : - std::locale-support - std::facet-support - : join - ] - [ run - replace_test.cpp - : : - : - std::locale-support - std::facet-support - : replace - ] - [ run - regex_test.cpp - ../../../regex/build/boost_regex - : : - : - : regex - ] - ; -} -