From d795262a9eed73462348a072f0b0ff4e9f7e6bd2 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 8 Aug 2007 19:02:26 +0000 Subject: [PATCH] Remove V1 Jamfiles [SVN r38516] --- build/Jamfile | 56 --------------------------------------------------- test/Jamfile | 51 ---------------------------------------------- 2 files changed, 107 deletions(-) delete mode 100644 build/Jamfile delete mode 100644 test/Jamfile diff --git a/build/Jamfile b/build/Jamfile deleted file mode 100644 index 2fe5983..0000000 --- a/build/Jamfile +++ /dev/null @@ -1,56 +0,0 @@ -# Boost System Library Build Jamfile - -# (C) Copyright Beman Dawes 2002, 2006 - -# Distributed under the Boost Software License, Version 1.0. -# (See accompanying file LICENSE_1_0.txt or www.boost.org/LICENSE_1_0.txt) - -# See library home page at http://www.boost.org/libs/system - -subproject libs/system/build ; - -SOURCES = error_code ; - -lib boost_system - : ../src/$(SOURCES).cpp - : # build requirements - BOOST_SYSTEM_STATIC_LINK - $(BOOST_AUX_ROOT) $(BOOST_ROOT) - # common-variant-tag ensures that the library will - # be named according to the rules used by the install - # and auto-link features: - common-variant-tag - : debug release # build variants - ; - -dll boost_system - : ../src/$(SOURCES).cpp - : # build requirements - BOOST_SYSTEM_DYN_LINK=1 # tell source we're building dll's - dynamic # build only for dynamic runtimes - $(BOOST_AUX_ROOT) $(BOOST_ROOT) - # common-variant-tag ensures that the library will - # be named according to the rules used by the install - # and auto-link features: - common-variant-tag - : debug release # build variants - ; - -install system lib - : boost_system boost_system - ; - -stage stage/lib : boost_system boost_system - : - # copy to a path rooted at BOOST_ROOT: - $(BOOST_ROOT) - # make sure the names of the libraries are correctly named: - common-variant-tag - # add this target to the "stage" and "all" psuedo-targets: - stage - all - : - debug release - ; - -# end diff --git a/test/Jamfile b/test/Jamfile deleted file mode 100644 index fef0463..0000000 --- a/test/Jamfile +++ /dev/null @@ -1,51 +0,0 @@ -# Boost System Library test Jamfile - -# Copyright Beman Dawes 2003, 2006 - -# 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 - -# See library home page at http://www.boost.org/libs/system - -subproject libs/system/test ; - -# bring in rules for testing -import testing ; - -# Make tests run by default. -DEPENDS all : test ; - -{ - # look in BOOST_ROOT for sources first, just in this Jamfile - local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ; - - test-suite "system" - : [ run libs/system/test/error_code_test.cpp - ../build/boost_system - : : : $(BOOST_AUX_ROOT) $(BOOST_ROOT) BOOST_ALL_NO_LIB BOOST_SYSTEM_STATIC_LINK - ] - [ run libs/system/test/error_code_test.cpp - ../build/boost_system - : : : $(BOOST_AUX_ROOT) $(BOOST_ROOT) BOOST_ALL_NO_LIB BOOST_SYSTEM_DYN_LINK dynamic - : error_code_test_dll - ] - [ run libs/system/test/error_code_user_test.cpp - ../build/boost_system - : : : $(BOOST_AUX_ROOT) $(BOOST_ROOT) BOOST_ALL_NO_LIB BOOST_SYSTEM_STATIC_LINK - ] - [ run libs/system/test/error_code_user_test.cpp - ../build/boost_system - : : : $(BOOST_AUX_ROOT) $(BOOST_ROOT) BOOST_ALL_NO_LIB BOOST_SYSTEM_DYN_LINK dynamic - : error_code_user_test_dll - ] - [ run libs/system/test/system_error_test.cpp - ../build/boost_system - : : : $(BOOST_AUX_ROOT) $(BOOST_ROOT) BOOST_ALL_NO_LIB BOOST_SYSTEM_STATIC_LINK - ] - [ run libs/system/test/system_error_test.cpp - ../build/boost_system - : : : $(BOOST_AUX_ROOT) $(BOOST_ROOT) BOOST_ALL_NO_LIB BOOST_SYSTEM_DYN_LINK dynamic - : system_error_test_dll - ] - ; -}