From e3ca2987e473bcc735441fcc68b8e45a0ff300e0 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 20 Aug 2009 10:43:44 +0000 Subject: [PATCH 01/77] Apply patch from issue #3354. Fixes #3354. [SVN r55683] --- src/static_mutex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static_mutex.cpp b/src/static_mutex.cpp index cef76783..040b52dd 100644 --- a/src/static_mutex.cpp +++ b/src/static_mutex.cpp @@ -157,7 +157,7 @@ void scoped_static_mutex_lock::lock() { boost::call_once(static_mutex::m_once,&static_mutex::init); if(0 == m_plock) - m_plock = new boost::recursive_mutex::scoped_lock(*static_mutex::m_pmutex, false); + m_plock = new boost::recursive_mutex::scoped_lock(*static_mutex::m_pmutex, boost::defer_lock); m_plock->lock(); m_have_lock = true; } From bae1c809922b0b97f6ef433551aa9fcbf9a87d99 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Thu, 20 Aug 2009 12:05:55 +0000 Subject: [PATCH 02/77] Force shared runtime if using ICU. [SVN r55685] --- build/Jamfile.v2 | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 8943a3f9..e6fc51ad 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -221,17 +221,20 @@ if $(gHAS_ICU) { lib icucore : : $(gICU_CORE_LIB) $(ICU_SEARCH_OPTS) shared ; ICU_EXTRA_SOURCE = icucore ; + explicit icucore ; } if $(gICU_IN_LIB) { lib icuin : : $(gICU_IN_LIB) $(ICU_SEARCH_OPTS) shared ; ICU_EXTRA_SOURCE += icuin ; + explicit icuin ; } #Added by Tommy Nordgren libicudata must be linked against on Mac OS X if $(gICU_DATA_LIB) { lib icudata : : $(gICU_DATA_LIB) $(ICU_SEARCH_OPTS) shared ; ICU_EXTRA_SOURCE += icudata ; + explicit icudata ; } #End of addition by Tommy Nordgren } @@ -267,9 +270,36 @@ lib boost_regex : ../src/$(SOURCES) $(ICU_EXTRA_SOURCE) icu_config2 icu_config gcc-mingw:static gcc-cygwin:static $(BOOST_REGEX_ICU_OPTS) + @force-shared-linking ; +shared-linking-warning-emitted = ; + +# The ICU is shipped as shared libraries with dynamic runtime. +# If Boost.Regex is built against static runtime, the combination +# will not work. The below rule forces shared runtime, and +# prints an explanation. +rule force-shared-linking ( properties * ) +{ + if $(gHAS_ICU) + { + if static in $(properties) + { + if ! $(shared-linking-warning-emitted) + { + shared-linking-warning-emitted = 1 ; + ECHO "warning: forcing runtime-link=shared for Boost.Regex" ; + ECHO "warning: this is required when using the ICU library" ; + } + } + return shared ; + } +} + + + alias icu_options : $(ICU_EXTRA_SOURCE) : : : $(BOOST_REGEX_ICU_OPTS) ; +explicit icu_options ; boost-install boost_regex ; From 75b99d3a37c8003409745cd3e434e553348bd073 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 20 Aug 2009 17:27:24 +0000 Subject: [PATCH 03/77] Suppress GCC warnings. [SVN r55688] --- include/boost/regex/v4/basic_regex_parser.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index 7d2f5543..ebec35b6 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -2008,7 +2008,7 @@ insert_recursion: v = static_cast(hash_value_from_capture_name(base, m_position)); re_brace* br = static_cast(this->append_state(syntax_element_assert_backref, sizeof(re_brace))); br->index = v; - if((*m_position != charT('>')) && (*m_position != charT('\'')) || (++m_position == m_end)) + if(((*m_position != charT('>')) && (*m_position != charT('\''))) || (++m_position == m_end)) { fail(regex_constants::error_badrepeat, m_position - m_base); return false; From 2686ab22a2efab34e51f49d73f596d1cbceaf983 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Sun, 23 Aug 2009 15:50:50 +0000 Subject: [PATCH 04/77] Don't add leading slash to every path. [SVN r55731] --- build/Jamfile.v2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index e6fc51ad..854ad300 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -200,7 +200,7 @@ if $(gHAS_ICU) if $(ICU_PATH) != "/usr" && $(ICU_PATH) != "/usr/local" { BOOST_REGEX_ICU_OPTS += "$(ICU_PATH)/include" ; - ICU_SEARCH_OPTS = /$(ICU_PATH)/lib ; + ICU_SEARCH_OPTS = $(ICU_PATH)/lib ; } } From 9f9ce59d573e93e600b5ae5488fd7b6e2d2aef54 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 24 Aug 2009 09:34:08 +0000 Subject: [PATCH 05/77] Treat ICU_PATH relatively to current dir. Also, fix another leading "/" bug. [SVN r55756] --- build/Jamfile.v2 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 854ad300..1437e935 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -192,11 +192,18 @@ if [ check-icu-config ] if $(gHAS_ICU) { BOOST_REGEX_ICU_OPTS = "freebsd:/usr/local/include" ; - ICU_SEARCH_OPTS = "freebsd:/$(ICU_PATH)/lib" ; + ICU_SEARCH_OPTS = "freebsd:$(ICU_PATH)/lib" ; BOOST_REGEX_ICU_OPTS += "BOOST_HAS_ICU=1" ; if $(ICU_PATH) { + # If ICU_PATH is specified on the command line, then it's + # relative to the current directory, while paths specified + # in a Jamfile are relative to that Jamfile. So, to + # avoid confusing the user if he's not running from + # libs/regex/build, explicitly root this. + ICU_PATH = [ path.native + [ path.root [ path.make $(ICU_PATH) ] [ path.pwd ] ] ] ; if $(ICU_PATH) != "/usr" && $(ICU_PATH) != "/usr/local" { BOOST_REGEX_ICU_OPTS += "$(ICU_PATH)/include" ; From 6b4d144be91e6dde28a5faa112997d58fff7b413 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 28 Aug 2009 16:07:13 +0000 Subject: [PATCH 06/77] Fix for old GCC versions with BOOST_REGEX_BUGGY_CTYPE_FACET defined. [SVN r55837] --- include/boost/regex/v4/cpp_regex_traits.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/regex/v4/cpp_regex_traits.hpp b/include/boost/regex/v4/cpp_regex_traits.hpp index 7ce3ed30..5255404b 100644 --- a/include/boost/regex/v4/cpp_regex_traits.hpp +++ b/include/boost/regex/v4/cpp_regex_traits.hpp @@ -716,7 +716,7 @@ void cpp_regex_traits_implementation::init() cpp_regex_traits_implementation::mask_unicode, }; #else - static const char_class_type masks[14] = + static const char_class_type masks[16] = { ::boost::re_detail::char_class_alnum, ::boost::re_detail::char_class_alpha, @@ -837,8 +837,8 @@ bool cpp_regex_traits_implementation::isctype(const charT c, char_class_t || ((mask & ::boost::re_detail::char_class_blank) && (m_pctype->is(std::ctype::space, c)) && !::boost::re_detail::is_separator(c)) || ((mask & ::boost::re_detail::char_class_word) && (c == '_')) || ((mask & ::boost::re_detail::char_class_unicode) && ::boost::re_detail::is_extended(c)) - || ((mask & ::boost::re_detail::char_class_vertical) && (is_separator(c) || (c == '\v'))) - || ((mask & ::boost::re_detail::char_class_horizontal) && m_pctype->is(std::ctype::space, c) && !(is_separator(c) || (c == '\v'))); + || ((mask & ::boost::re_detail::char_class_vertical_space) && (is_separator(c) || (c == '\v'))) + || ((mask & ::boost::re_detail::char_class_horizontal_space) && m_pctype->is(std::ctype::space, c) && !(is_separator(c) || (c == '\v'))); } #endif From efd3e2e05cd891902236d4817dc08fef3493e031 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 24 Sep 2009 11:23:52 +0000 Subject: [PATCH 07/77] Changes relating to issue #3408. Add hooks for the dcdflib to the incomplete gamma tests. Add hooks for the dcdflib to the igamma performance tests. Some small performance enhancements. [SVN r56370] --- performance/Jamfile.v2 | 1 + 1 file changed, 1 insertion(+) diff --git a/performance/Jamfile.v2 b/performance/Jamfile.v2 index 44937ada..ca47cb9e 100644 --- a/performance/Jamfile.v2 +++ b/performance/Jamfile.v2 @@ -48,6 +48,7 @@ exe regex_comparison : ; +install . : regex_comparison ; From 17ad2e9302dce08bc9f664b1f15d8576c156bc14 Mon Sep 17 00:00:00 2001 From: "Troy D. Straszheim" Date: Sat, 17 Oct 2009 02:07:38 +0000 Subject: [PATCH 08/77] rm cmake from trunk. I'm not entirely sure this is necessary to satisfy the inspect script, but I'm not taking any chances, and it is easy to put back [SVN r56942] --- CMakeLists.txt | 31 -------------- module.cmake | 1 - src/CMakeLists.txt | 40 ------------------ test/CMakeLists.txt | 100 -------------------------------------------- 4 files changed, 172 deletions(-) delete mode 100644 CMakeLists.txt delete mode 100644 module.cmake delete mode 100644 src/CMakeLists.txt delete mode 100644 test/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 0820f6c2..00000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -#---------------------------------------------------------------------------- -# This file was automatically generated from the original CMakeLists.txt file -# Add a variable to hold the headers for the library -set (lib_headers - regex.h - regex.hpp - regex_fwd.hpp - regex - cregex.hpp -) - -# Add a library target to the build system -boost_library_project( - regex - SRCDIRS src - TESTDIRS test - HEADERS ${lib_headers} - # DOCDIRS - DESCRIPTION "A regular expression library" - MODULARIZED - AUTHORS "John Maddock " - # MAINTAINERS -) - - diff --git a/module.cmake b/module.cmake deleted file mode 100644 index 3c9c0ae1..00000000 --- a/module.cmake +++ /dev/null @@ -1 +0,0 @@ -boost_module(regex DEPENDS date_time thread) \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt deleted file mode 100644 index 59e1b7c4..00000000 --- a/src/CMakeLists.txt +++ /dev/null @@ -1,40 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -# Look for the ICU library. If we find it, we'll compile in support for ICU -include(FindICU) -set(BOOST_REGEX_LIBRARIES) -if (ICU_FOUND AND ICU_I18N_FOUND) - add_definitions(-DBOOST_HAS_ICU=1) - include_directories(${ICU_INCLUDE_DIRS}) - set(BOOST_REGEX_LIBRARIES ${ICU_LIBRARIES} ${ICU_I18N_LIBRARIES}) -endif (ICU_FOUND AND ICU_I18N_FOUND) - -boost_add_library(boost_regex - c_regex_traits.cpp - cpp_regex_traits.cpp - cregex.cpp - fileiter.cpp - icu.cpp - instances.cpp - posix_api.cpp - regex.cpp - regex_debug.cpp - regex_raw_buffer.cpp - regex_traits_defaults.cpp - static_mutex.cpp - w32_regex_traits.cpp - wc_regex_traits.cpp - wide_posix_api.cpp - winstances.cpp - usinstances.cpp - LINK_LIBS ${BOOST_REGEX_LIBRARIES} - SHARED_COMPILE_FLAGS -DBOOST_REGEX_DYN_LINK=1) - - - - - diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt deleted file mode 100644 index 3da3c749..00000000 --- a/test/CMakeLists.txt +++ /dev/null @@ -1,100 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -boost_additional_test_dependencies(regex BOOST_DEPENDS test) - -# TODO: Default to multi-threaded? -macro(regex_test TESTNAME) - parse_arguments(REGEX_TEST "" "" ${ARGN}) - - if (REGEX_TEST_DEFAULT_ARGS) - set(REGEX_TEST_SOURCES ${REGEX_TEST_DEFAULT_ARGS}) - else (REGEX_TEST_DEFAULT_ARGS) - set(REGEX_TEST_SOURCES "${TESTNAME}.cpp") - endif (REGEX_TEST_DEFAULT_ARGS) - - boost_test_run(${TESTNAME} ${REGEX_TEST_SOURCES} - COMPILE_FLAGS "-DBOOST_REGEX_DYN_LINK=1" - DEPENDS boost_regex - EXTRA_OPTIONS SHARED) -endmacro(regex_test) - -set(R_SOURCES - regress/basic_tests.cpp - regress/main.cpp - regress/test_alt.cpp - regress/test_anchors.cpp - regress/test_asserts.cpp - regress/test_backrefs.cpp - regress/test_deprecated.cpp - regress/test_emacs.cpp - regress/test_escapes.cpp - regress/test_grep.cpp - regress/test_locale.cpp - regress/test_mfc.cpp - regress/test_non_greedy_repeats.cpp - regress/test_perl_ex.cpp - regress/test_replace.cpp - regress/test_sets.cpp - regress/test_simple_repeats.cpp - regress/test_tricky_cases.cpp - regress/test_icu.cpp - regress/test_unicode.cpp - regress/test_overloads.cpp - regress/test_operators.cpp - ) - -boost_test_run(regex_regress ${R_SOURCES} DEPENDS boost_regex STATIC) -boost_test_run(regex_regress_dll ${R_SOURCES} - COMPILE_FLAGS "-DBOOST_REGEX_DYN_LINK=1" - DEPENDS boost_regex - EXTRA_OPTIONS SHARED) -boost_test_run(regex_regress_threaded ${R_SOURCES} - COMPILE_FLAGS "-DTEST_THREADS -DBOOST_REGEX_DYN_LINK=1" - DEPENDS boost_regex boost_thread - EXTRA_OPTIONS SHARED MULTI_THREADED) - -regex_test(posix_api_check c_compiler_checks/posix_api_check.c) -boost_test_compile(wide_posix_api_check_c c_compiler_checks/wide_posix_api_check.c) -regex_test(posix_api_check_cpp c_compiler_checks/wide_posix_api_check.cpp) -regex_test(bad_expression_test pathology/bad_expression_test.cpp) -regex_test(recursion_test pathology/recursion_test.cpp) -regex_test(unicode_iterator_test unicode/unicode_iterator_test.cpp) - -boost_test_run(static_mutex_test static_mutex/static_mutex_test.cpp - COMPILE_FLAGS "-DBOOST_REGEX_DYN_LINK=1" - DEPENDS boost_regex boost_thread - EXTRA_OPTIONS MULTI_THREADED SHARED) - -regex_test(object_cache_test object_cache/object_cache_test.cpp) -boost_test_run(regex_config_info config_info/regex_config_info.cpp - DEPENDS boost_regex - EXTRA_OPTIONS STATIC) - -boost_test_run(regex_dll_config_info config_info/regex_config_info.cpp - COMPILE_FLAGS "-DBOOST_REGEX_DYN_LINK=1" - DEPENDS boost_regex - EXTRA_OPTIONS SHARED) - -regex_test(test_collate_info collate_info/collate_info.cpp) - -boost_test_compile(concept_check concepts/concept_check.cpp) -boost_test_compile(ice_concept_check concepts/icu_concept_check.cpp) - -# TODO: Deal with this - # [ run - # sources -# captures/captures_test.cpp - # captures//boost_regex_extra - #: # additional args - #: # test-files - #: # requirements - # multi - # BOOST_REGEX_MATCH_EXTRA=1 - # BOOST_REGEX_NO_LIB=1 -# : # test name - # captures_test -# ] From 9188464e39251ef9896c3bbfc2db152082af1410 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 24 Oct 2009 15:51:57 +0000 Subject: [PATCH 09/77] Tighten up error handling and checking. [SVN r57133] --- include/boost/regex/v4/basic_regex_parser.hpp | 5 +++++ include/boost/regex/v4/match_results.hpp | 1 + 2 files changed, 6 insertions(+) diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index ebec35b6..0fa35786 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -141,6 +141,11 @@ void basic_regex_parser::parse(const charT* p1, const charT* p2, case regbase::literal: m_parser_proc = &basic_regex_parser::parse_literal; break; + default: + // Ooops, someone has managed to set more than one of the main option flags, + // so this must be an error: + fail(regex_constants::error_unknown, 0); + return; } // parse all our characters: diff --git a/include/boost/regex/v4/match_results.hpp b/include/boost/regex/v4/match_results.hpp index 09dd31f0..ce18c5c4 100644 --- a/include/boost/regex/v4/match_results.hpp +++ b/include/boost/regex/v4/match_results.hpp @@ -411,6 +411,7 @@ public: } void BOOST_REGEX_CALL set_first(BidiIterator i) { + BOOST_ASSERT(m_subs.size() > 2); // set up prefix: m_subs[1].second = i; m_subs[1].matched = (m_subs[1].first != i); From 308c336700a1ba434639599f8ce31d4e201aa9d5 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 30 Oct 2009 17:25:12 +0000 Subject: [PATCH 10/77] Added support for function objects as well as strings when formatting. Updated and regenerated docs. [SVN r57250] --- doc/history.qbk | 4 + .../background_information/examples.html | 6 +- .../background_information/history.html | 22 +- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 +- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 +- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 28 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 113 ++++- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 55 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 +-- doc/html/boost_regex/syntax/basic_syntax.html | 44 +- doc/html/boost_regex/syntax/perl_syntax.html | 96 ++-- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/match_result.qbk | 63 ++- doc/regex_format.qbk | 21 +- doc/regex_replace.qbk | 41 +- include/boost/regex/concepts.hpp | 94 ++++ include/boost/regex/v4/match_results.hpp | 51 +- include/boost/regex/v4/regex_format.hpp | 475 ++++++++++++++---- include/boost/regex/v4/regex_replace.hpp | 33 +- 39 files changed, 951 insertions(+), 407 deletions(-) diff --git a/doc/history.qbk b/doc/history.qbk index 360f8922..4f78bcee 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -8,6 +8,10 @@ [section:history History] +[h4 Boost 1.42] + +* Added support for Functors rather than strings as format expressions. + [h4 Boost 1.40] * Added support for many Perl 5.10 syntax elements including named diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 39bd0df1..2c2e3639 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
- + Test Programs
@@ -107,7 +107,7 @@ Files: captures_test.cpp.

- + Example programs
@@ -133,7 +133,7 @@ Files: regex_timer.cpp.

- + Code snippets
diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 084381fc..b5b7a907 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -25,8 +25,16 @@ +
+ + Boost + 1.42 +
+
  • + Added support for Functors rather than strings as format expressions. +
- + Boost 1.40
@@ -35,7 +43,7 @@ branch resets and recursive regular expressions.
- + Boost 1.38
@@ -62,7 +70,7 @@
- + Boost 1.34
@@ -85,7 +93,7 @@
- + Boost 1.33.1
@@ -155,7 +163,7 @@
- + Boost 1.33.0
@@ -210,7 +218,7 @@
- + Boost 1.32.1
@@ -218,7 +226,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
- + Boost 1.31.0
diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index eb901bae..732fb07e 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

- + Win32 localization model.
@@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

- + C localization model.
@@ -114,7 +114,7 @@ libraries including version 1 of this library.

- + C++ localization model.
@@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

- + Providing a message catalogue
diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 31c09f0d..e0df6eec 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
- + C++

@@ -36,7 +36,7 @@ Report on C++ Library Extensions.

- + ECMAScript / JavaScript
@@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

- + Perl

@@ -62,7 +62,7 @@ (??{code}) Not implementable in a compiled strongly typed language.

- + POSIX

@@ -82,7 +82,7 @@ a custom traits class.

- + Unicode

diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index c6345106..a977b271 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

- + Marked sub-expressions

@@ -218,7 +218,7 @@ output stream.

- + Unmatched Sub-Expressions

@@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

- + Repeated Captures

diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 90053a97..8461f686 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

- + Grouping

@@ -40,7 +40,7 @@ you want a to output literal parenthesis.

- + Conditionals

@@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

- + Placeholder Sequences
@@ -319,7 +319,7 @@ as a literal.

- + Escape Sequences
diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 3f61840d..e6c47fd0 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

- + Building with bjam

@@ -58,7 +58,7 @@ started guide for more information.

- + Building With Unicode and ICU Support
@@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

- + Building via makefiles
- + Borland C++ Builder:
- + GCC(2.95 and later)

@@ -302,7 +302,7 @@ see the config library documentation.

- + Sun Workshop 6.1

@@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

- + Makefiles for Other compilers
diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index f4b5f922..9954dc42 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
- + Synopsis
#include <boost/pattern_except.hpp>
@@ -54,7 +54,7 @@
 } // namespace boost
 
- + Description
regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
index 30d3449c..a630316d 100644
--- a/doc/html/boost_regex/ref/basic_regex.html
+++ b/doc/html/boost_regex/ref/basic_regex.html
@@ -27,7 +27,7 @@
  basic_regex
 
 
- + Synopsis
#include <boost/regex.hpp>
@@ -244,7 +244,7 @@
 } // namespace boost
 
- + Description

@@ -327,7 +327,7 @@ basic_regex.

-

Table 1. basic_regex default construction postconditions

+

Table 1. basic_regex default construction postconditions

@@ -407,7 +407,7 @@ flags specified in f.

-

Table 2. Postconditions for basic_regex construction

+

Table 2. Postconditions for basic_regex construction

@@ -512,7 +512,7 @@ specified in f.

-

Table 3. Postconditions for basic_regex construction

+

Table 3. Postconditions for basic_regex construction

@@ -616,7 +616,7 @@ according the option flags specified in f.

-

Table 4. Postconditions for basic_regex construction

+

Table 4. Postconditions for basic_regex construction

@@ -727,7 +727,7 @@ flags specified in f.

-

Table 5. Postconditions for basic_regex construction

+

Table 5. Postconditions for basic_regex construction

@@ -829,7 +829,7 @@ flags specified in f.

-

Table 6. Postconditions for basic_regex construction

+

Table 6. Postconditions for basic_regex construction

@@ -1043,7 +1043,7 @@ in f.

-

Table 7. Postconditions for basic_regex::assign

+

Table 7. Postconditions for basic_regex::assign

diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 3d051b83..18b1d732 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

- + Minimal requirements.
@@ -381,7 +381,7 @@
- + Additional Optional Requirements
diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index 8e482ee8..291ee71f 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

- + Algorithm regex_format
@@ -46,15 +46,10 @@ string, regex_format can be used for search and replace operations:

-
template <class OutputIterator, class iterator, class Allocator, class charT>
+
template <class OutputIterator, class iterator, class Allocator, class Formatter>
 OutputIterator regex_format(OutputIterator out,
                            const match_results<iterator, Allocator>& m,
-                           const charT* fmt,
-                           match_flag_type flags = 0);
-template <class OutputIterator, class iterator, class Allocator, class charT>
-OutputIterator regex_format(OutputIterator out,
-                           const match_results<iterator, Allocator>& m,
-                           const std::basic_string<charT>& fmt,
+                           Formatter fmt,
                            match_flag_type flags = 0);
 

@@ -71,16 +66,10 @@ form, depending upon your compilers capabilities

-
template <class iterator, class Allocator, class charT>
+
template <class iterator, class Allocator, class Formatter>
 std::basic_string<charT> regex_format
                                  (const match_results<iterator, Allocator>& m, 
-                                 const charT* fmt,
-                                 match_flag_type flags = 0);
-
-template <class iterator, class Allocator, class charT>
-std::basic_string<charT> regex_format
-                                 (const match_results<iterator, Allocator>& m, 
-                                 const std::basic_string<charT>& fmt,
+                                 Formatter fmt,
                                  match_flag_type flags = 0);
 

@@ -133,13 +122,14 @@

- const charT* fmt + Formatter fmt

- A format string that determines how the match is transformed into - the new string. + Either a format string that determines how the match is transformed + into the new string, or a functor that computes the new string + from m - see match_results<>::format.

diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 331567be..f8c7c708 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
- + Synopsis

@@ -57,7 +57,7 @@ } // namespace boost

- + Description

diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 102543d0..dd1a72cf 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

- + Description

diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 6e8f7c0b..ddb66e3f 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

- + Synopsis
#include <boost/regex.hpp>
@@ -132,11 +132,12 @@
    const_iterator begin() const;
    const_iterator end() const;
    // format:
-   template <class OutputIterator>
+   template <class OutputIterator, class Formatter>
    OutputIterator format(OutputIterator out,
-                        const string_type& fmt,
+                        Formatter fmt,
                         match_flag_type flags = format_default) const;
-   string_type format(const string_type& fmt,
+   template <class Formatter>
+   string_type format(Formatter fmt,
                      match_flag_type flags = format_default) const;
 
    allocator_type get_allocator() const;
@@ -166,7 +167,7 @@
          match_results<BidirectionalIterator, Allocator>& m2);
 
- + Description

@@ -558,18 +559,32 @@

-
template <class OutputIterator>
+
template <class OutputIterator, class Formatter>
 OutputIterator format(OutputIterator out,
-                     const string_type& fmt,
-                     match_flag_type flags = format_default);
+                      Formatter fmt,
+                      match_flag_type flags = format_default);
 

Requires: The type OutputIterator conforms to the Output Iterator requirements (C++ std 24.1.2).

- Effects: Copies the character sequence - [fmt.begin(), fmt.end()) + The type Formatter must be + either a pointer to a null-terminated string of type char_type[], or be a container of char_type's + (for example std::basic_string<char_type>) + or be a unary, binary or ternary functor that computes the replacement string + from a function call: either fmt(*this) + which must return a container of char_type's + to be used as the replacement text, or either fmt(*this, + out) + or fmt(*this, out, flags), both of which write the replacement text + to *out, + and then return the new OutputIterator position. +

+

+ Effects: If fmt + is either a null-terminated string, or a container of char_type's, + then copies the character sequence [fmt.begin(), fmt.end()) to OutputIterator out. For each format specifier or escape sequence in fmt, replace that sequence with either the character(s) it represents, or the @@ -578,6 +593,27 @@ by default this is the format used by ECMA-262, ECMAScript Language Specification, Chapter 15 part 5.4.11 String.prototype.replace.

+

+ If fmt is a function object, + then depending on the number of arguments the function object accepts, it + will either: +

+
    +
  • + Call fmt(*this) and + copy the result to OutputIteratorout. +
  • +
  • + Call fmt(*this, out). +
  • +
  • + Call fmt(*this, out, flags). +
  • +
+

+ In all cases the new position of the OutputIterator + is returned. +

See the format syntax guide for more information.

@@ -586,18 +622,57 @@

-
string_type format(const string_type& fmt,
-                  match_flag_type flags = format_default);
+
template <class Formatter>
+string_type format(Formatter fmt,
+                   match_flag_type flags = format_default);
 

- Effects: Returns a copy of the string fmt. - For each format specifier or escape sequence in fmt, - replace that sequence with either the character(s) it represents, or the - sequence of characters within *this to which it refers. The bitmasks specified - in flags determines what format specifiers or escape sequences are recognized, - by default this is the format used by ECMA-262, ECMAScript Language Specification, - Chapter 15 part 5.4.11 String.prototype.replace. + Requires The type Formatter + must be either a pointer to a null-terminated string of type char_type[], + or be a container of char_type's + (for example std::basic_string<char_type>) + or be a unary, binary or ternary functor that computes the replacement string + from a function call: either fmt(*this) + which must return a container of char_type's + to be used as the replacement text, or either fmt(*this, + out) + or fmt(*this, out, flags), both of which write the replacement text + to *out, + and then return the new OutputIterator position.

+

+ Effects: If fmt + is either a null-terminated string, or a container of char_type's, + then copies the string fmt: For each format specifier + or escape sequence in fmt, replace that sequence with + either the character(s) it represents, or the sequence of characters within + *this + to which it refers. The bitmasks specified in flags determines what format + specifiers or escape sequences are recognized, by default this is the format + used by ECMA-262, ECMAScript Language Specification, Chapter 15 part 5.4.11 + String.prototype.replace. +

+

+ If fmt is a function object, + then depending on the number of arguments the function object accepts, it + will either: +

+
    +
  • + Call fmt(*this) and + return the result. +
  • +
  • + Call fmt(*this, unspecified-output-iterator), where unspecified-output-iterator + is an unspecified OutputIterator type used to copy the output to the string + result. +
  • +
  • + Call fmt(*this, unspecified-output-iterator, flags), where unspecified-output-iterator + is an unspecified OutputIterator type used to copy the output to the string + result. +
  • +

See the format syntax guide for more information.

diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 4ea31468..1e813aed 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

- + u32regex_match

@@ -89,7 +89,7 @@ }

- + u32regex_search

@@ -128,7 +128,7 @@ }

- + u32regex_replace

diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 892034a2..62992e75 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

- + u32regex_iterator

@@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

- + u32regex_token_iterator

diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 6148023b..c4904305 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

- + regex_match

@@ -82,7 +82,7 @@ }

- + regex_match (second overload)
@@ -110,7 +110,7 @@ }
- + regex_search

@@ -149,7 +149,7 @@ }

- + regex_search (second overload)
@@ -164,7 +164,7 @@ + s.GetLength(), e, f);

- + regex_replace

diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 54858bc8..07f5da99 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

- + regex_iterator creation helper
@@ -68,7 +68,7 @@ }
- + regex_token_iterator creation helpers
diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 6424b99c..843f96c4 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

- + regcomp

@@ -379,7 +379,7 @@

- + regerror

@@ -467,7 +467,7 @@

- + regexec

@@ -537,7 +537,7 @@

- + regfree

diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 2a101c5e..fff1bf7f 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

- + Description

@@ -436,7 +436,7 @@ m.

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 9b1a7108..ad738b0b 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

- + Description
template <class BidirectionalIterator, class Allocator, class charT, class traits>
@@ -360,7 +360,7 @@
         Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
       

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 70a65308..26acd84b 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -38,37 +38,40 @@ set. If the flag format_first_only is set then only the first occurrence is replaced rather than all occurrences.

-
template <class OutputIterator, class BidirectionalIterator, class traits, class charT>
+
template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
 OutputIterator regex_replace(OutputIterator out,
                              BidirectionalIterator first,
                              BidirectionalIterator last,
                              const basic_regex<charT, traits>& e,
-                             const basic_string<charT>& fmt,
+                             Formatter fmt,
                              match_flag_type flags = match_default);
 
-template <class traits, class charT>
+template <class traits, class Formatter>
 basic_string<charT> regex_replace(const basic_string<charT>& s,
                                   const basic_regex<charT, traits>& e,
-                                  const basic_string<charT>& fmt,
+                                  Formatter fmt,
                                   match_flag_type flags = match_default);
 
- + Description
-
template <class OutputIterator, class BidirectionalIterator, class traits, class charT>
+
template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
 OutputIterator regex_replace(OutputIterator out,
                              BidirectionalIterator first,
                              BidirectionalIterator last,
                              const basic_regex<charT, traits>& e,
-                             const basic_string<charT>& fmt,
+                             Formatter fmt,
                              match_flag_type flags = match_default);
 

Enumerates all the occurences of expression e in the sequence [first, last), replacing each occurence with the string that results by merging the match found with the format string fmt, - and copies the resulting string to out. + and copies the resulting string to out. In the case + that fmt is a unary, binary or ternary function object, + then the character sequence generated by that object is copied unchanged + to the output when performing a substitution.

If the flag format_no_copy @@ -85,6 +88,21 @@ along with the rules used for finding matches, are determined by the flags set in flags: see match_flag_type.

+

+ Requires The type Formatter + must be either a pointer to a null-terminated string of type char_type[], + or be a container of char_type's + (for example std::basic_string<char_type>) + or be a unary, binary or ternary functor that computes the replacement string + from a function call: either fmt(what) + which must return a container of char_type's + to be used as the replacement text, or either fmt(what, + out) + or fmt(what, out, flags), both of which write the replacement text + to *out, + and then return the new OutputIterator position. In each case what is the match_results object that represents + the match found. +

Effects: Constructs an regex_iterator object:

@@ -150,12 +168,27 @@

Returns: out.

-
template <class traits, class charT>
+
template <class traits, class Formatter>
 basic_string<charT> regex_replace(const basic_string<charT>& s,
                                   const basic_regex<charT, traits>& e,
-                                  const basic_string<charT>& fmt,
+                                  Formatter fmt,
                                   match_flag_type flags = match_default);
 
+

+ Requires The type Formatter + must be either a pointer to a null-terminated string of type char_type[], + or be a container of char_type's + (for example std::basic_string<char_type>) + or be a unary, binary or ternary functor that computes the replacement string + from a function call: either fmt(what) + which must return a container of char_type's + to be used as the replacement text, or either fmt(what, + out) + or fmt(what, out, flags), both of which write the replacement text + to *out, + and then return the new OutputIterator position. In each case what is the match_results object that represents + the match found. +

Effects: Constructs an object basic_string<charT> result, calls regex_replace(back_inserter(result), s.begin(), s.end(), e, fmt, @@ -163,7 +196,7 @@ and then returns result.

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 44faddee..b05f72bf 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

- + Description
template <class BidirectionalIterator, class Allocator, class charT, class traits>
@@ -355,7 +355,7 @@
         Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
       

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 8728ee16..60d42bdf 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

- + Description

@@ -383,7 +383,7 @@ m.

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index cccf4917..c3161c62 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

- + Description

diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 999f0ce4..b1dc0b72 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

- + Description
- + Members

@@ -473,7 +473,7 @@

- + sub_match non-member operators
@@ -1008,7 +1008,7 @@ + m2.str()
.

- + Stream inserter

diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 6821fd0d..cf3e7fe0 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

- + Synopsis

@@ -46,7 +46,7 @@

- + POSIX Extended Syntax

@@ -56,7 +56,7 @@

.[{()\*+?|^$
- + Wildcard:

@@ -74,7 +74,7 @@

- + Anchors:

@@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

- + Marked sub-expressions:
@@ -98,7 +98,7 @@ to by a back-reference.

- + Repeats:

@@ -184,7 +184,7 @@ cab operator to be applied to.

- + Back references:

@@ -214,7 +214,7 @@ cab

- + Alternation

@@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

- + Character sets:
@@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

- + Single characters:
@@ -249,7 +249,7 @@ cab or 'c'.

- + Character ranges:
@@ -265,7 +265,7 @@ cab the code points of the characters only.

- + Negation:

@@ -274,7 +274,7 @@ cab range a-c.

- + Character classes:
@@ -284,7 +284,7 @@ cab character class names.

- + Collating Elements:
@@ -312,7 +312,7 @@ cab matches a NUL character.

- + Equivalence classes:
@@ -329,7 +329,7 @@ cab or even all locales on one platform.

- + Combinations:

@@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

- + Escapes

@@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

- + Escapes matching a specific character
@@ -552,7 +552,7 @@ cab
- + "Single character" character classes:
@@ -706,7 +706,7 @@ cab
- + Character Properties
@@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

- + Word Boundaries

@@ -888,7 +888,7 @@ cab

- + Buffer boundaries
@@ -979,7 +979,7 @@ cab
- + Continuation Escape
@@ -991,7 +991,7 @@ cab match to start where the last one ended.

- + Quoting escape
@@ -1005,7 +1005,7 @@ cab \*+aaa
- + Unicode escapes
@@ -1056,7 +1056,7 @@ cab
- + Any other escape
@@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

- + Operator precedence
@@ -1101,7 +1101,7 @@ cab
- + What Gets Matched
@@ -1111,11 +1111,11 @@ cab rule.

- + Variations

- + Egrep

@@ -1136,7 +1136,7 @@ cab used with the -E option.

- + awk

@@ -1150,7 +1150,7 @@ cab these by default anyway.

- + Options

@@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

- + References

diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 0c6e6604..f2812f9d 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

- + Synopsis

@@ -45,7 +45,7 @@

- + POSIX Basic Syntax

@@ -55,7 +55,7 @@

.[\*^$
- + Wildcard:

@@ -73,7 +73,7 @@

- + Anchors:

@@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

- + Marked sub-expressions:
@@ -97,7 +97,7 @@ by a back-reference.

- + Repeats:

@@ -155,7 +155,7 @@ aaaa to.

- + Back references:

@@ -173,7 +173,7 @@ aaaa

aaabba
- + Character sets:
@@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

- + Single characters:
@@ -195,7 +195,7 @@ aaaa or 'c'.

- + Character ranges:
@@ -211,7 +211,7 @@ aaaa of the characters only.

- + Negation:

@@ -220,7 +220,7 @@ aaaa range a-c.

- + Character classes:
@@ -230,7 +230,7 @@ aaaa character class names.

- + Collating Elements:
@@ -259,7 +259,7 @@ aaaa element names.

- + Equivalence classes:
@@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

- + Combinations:

@@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

- + Escapes

@@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

- + What Gets Matched

@@ -309,13 +309,13 @@ aaaa rule.

- + Variations

- + Grep

@@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

- + emacs

@@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

- + Options

@@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

- + References

diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index cc7a368a..6bae14c3 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

- + Synopsis

@@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

- + Perl Regular Expression Syntax

@@ -53,7 +53,7 @@

.[{()\*+?|^$
- + Wildcard

@@ -73,7 +73,7 @@

- + Anchors

@@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

- + Marked sub-expressions
@@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

- + Non-marking grouping
@@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

- + Repeats

@@ -188,7 +188,7 @@ to be applied to.

- + Non greedy repeats
@@ -218,7 +218,7 @@ while consuming as little input as possible.

- + Pocessive repeats
@@ -250,7 +250,7 @@ while giving nothing back.

- + Back references

@@ -360,7 +360,7 @@ named "two".

- + Alternation

@@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

- + Character sets

@@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

- + Single characters

@@ -407,7 +407,7 @@ 'b', or 'c'.

- + Character ranges
@@ -421,7 +421,7 @@ sensitive.

- + Negation

@@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

- + Character classes
@@ -441,7 +441,7 @@ class names.

- + Collating Elements
@@ -463,7 +463,7 @@ matches a \0 character.

- + Equivalence classes
@@ -480,7 +480,7 @@ or even all locales on one platform.

- + Escaped Characters
@@ -492,7 +492,7 @@ is not a "word" character.

- + Combinations

@@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

- + Escapes

@@ -692,7 +692,7 @@

- + "Single character" character classes:
@@ -894,7 +894,7 @@
- + Character Properties
@@ -1002,7 +1002,7 @@ as does \p{digit}.

- + Word Boundaries

@@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

- + Buffer boundaries

@@ -1046,7 +1046,7 @@ to the regular expression \n*\z

- + Continuation Escape
@@ -1058,7 +1058,7 @@ one ended.

- + Quoting escape

@@ -1071,7 +1071,7 @@ \*+aaa

- + Unicode escapes

@@ -1081,7 +1081,7 @@ followed by a sequence of zero or more combining characters.

- + Matching Line Endings
@@ -1090,7 +1090,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

- + Keeping back some text
@@ -1105,7 +1105,7 @@ This can be used to simulate variable width lookbehind assertions.

- + Any other escape
@@ -1114,7 +1114,7 @@ \@ matches a literal '@'.

- + Perl Extended Patterns
@@ -1123,7 +1123,7 @@ (?.

- + Named Subexpressions
@@ -1145,14 +1145,14 @@ format string for search and replace operations, or in the match_results member functions.

- + Comments

(?# ... ) is treated as a comment, it's contents are ignored.

- + Modifiers

@@ -1166,7 +1166,7 @@ pattern only.

- + Non-marking groups
@@ -1175,7 +1175,7 @@ an additional sub-expression.

- + Branch reset

@@ -1197,7 +1197,7 @@ # 1 2 2 3 2 3 4

- + Lookahead

@@ -1220,7 +1220,7 @@ could be used to validate the password.

- + Lookbehind

@@ -1234,7 +1234,7 @@ (pattern must be of fixed length).

- + Independent sub-expressions
@@ -1247,7 +1247,7 @@ no match is found at all.

- + Recursive Expressions
@@ -1271,7 +1271,7 @@ to the next sub-expression to be declared.

- + Conditional Expressions
@@ -1319,7 +1319,7 @@
- + Operator precedence
@@ -1354,7 +1354,7 @@

- + What gets matched

@@ -1529,7 +1529,7 @@

- + Variations

@@ -1538,7 +1538,7 @@ and JScript are all synonyms for perl.

- + Options

@@ -1550,7 +1550,7 @@ are to be applied.

- + Pattern Modifiers

@@ -1562,7 +1562,7 @@ and no_mod_s.

- + References

diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 94b8709f..fd80edd8 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

- + Rely on wchar_t

@@ -56,7 +56,7 @@

- + Use a Unicode Aware Regular Expression Type.
diff --git a/doc/html/index.html b/doc/html/index.html index cb420c49..68c0060c 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
-

+

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)

@@ -196,7 +196,7 @@

- +

Last revised: July 29, 2009 at 15:59:46 GMT

Last revised: October 30, 2009 at 17:13:44 GMT


diff --git a/doc/match_result.qbk b/doc/match_result.qbk index 8e1ae788..680f868f 100644 --- a/doc/match_result.qbk +++ b/doc/match_result.qbk @@ -105,11 +105,12 @@ Class template `match_results` is most commonly used as one of the typedefs const_iterator ``[link boost_regex.match_results.begin begin]``() const; const_iterator ``[link boost_regex.match_results.end end]``() const; // format: - template + template OutputIterator ``[link boost_regex.match_results.format format]``(OutputIterator out, - const string_type& fmt, + Formatter fmt, match_flag_type flags = format_default) const; - string_type ``[link boost_regex.match_results.format2 format]``(const string_type& fmt, + template + string_type ``[link boost_regex.match_results.format2 format]``(Formatter fmt, match_flag_type flags = format_default) const; allocator_type ``[link boost_regex.match_results.get_allocator get_allocator]``() const; @@ -352,15 +353,25 @@ marked sub-expression matches stored in *this. [#boost_regex.match_results_format] [#boost_regex.match_results.format] - template + template OutputIterator format(OutputIterator out, - const string_type& fmt, - match_flag_type flags = format_default); + Formatter fmt, + match_flag_type flags = format_default); [*Requires]: The type `OutputIterator` conforms to the Output Iterator requirements (C++ std 24.1.2). -[*Effects]: Copies the character sequence `[fmt.begin(), fmt.end())` to +The type `Formatter` must be either a pointer to a null-terminated string +of type `char_type[]`, or be a container of `char_type`'s (for example +`std::basic_string`) or be a unary, binary or ternary functor +that computes the replacement string from a function call: either +`fmt(*this)` which must return a container of `char_type`'s to be used as the +replacement text, or either `fmt(*this, out)` or `fmt(*this, out, flags)`, both of +which write the replacement text to `*out`, and then return the new +OutputIterator position. + +[*Effects]: If `fmt` is either a null-terminated string, or a +container of `char_type`'s, then copies the character sequence `[fmt.begin(), fmt.end())` to `OutputIterator` /out/. For each format specifier or escape sequence in /fmt/, replace that sequence with either the character(s) it represents, or the sequence of characters within `*this` to which it refers. @@ -369,6 +380,16 @@ escape sequences are recognized, by default this is the format used by ECMA-262, ECMAScript Language Specification, Chapter 15 part 5.4.11 String.prototype.replace. +If `fmt` is a function object, then depending on the number of arguments +the function object accepts, it will either: + +* Call `fmt(*this)` and copy the result to `OutputIterator` +/out/. +* Call `fmt(*this, out)`. +* Call `fmt(*this, out, flags)`. + +In all cases the new position of the `OutputIterator` is returned. + See the [link boost_regex.format format syntax guide for more information]. [*Returns]: out. @@ -376,10 +397,23 @@ See the [link boost_regex.format format syntax guide for more information]. [#boost_regex.match_results.format2] - string_type format(const string_type& fmt, - match_flag_type flags = format_default); + template + string_type format(Formatter fmt, + match_flag_type flags = format_default); -[*Effects]: Returns a copy of the string /fmt/. For each format specifier or +[*Requires] +The type `Formatter` must be either a pointer to a null-terminated string +of type `char_type[]`, or be a container of `char_type`'s (for example +`std::basic_string`) or be a unary, binary or ternary functor +that computes the replacement string from a function call: either +`fmt(*this)` which must return a container of `char_type`'s to be used as the +replacement text, or either `fmt(*this, out)` or `fmt(*this, out, flags)`, both of +which write the replacement text to `*out`, and then return the new +OutputIterator position. + +[*Effects]: +If `fmt` is either a null-terminated string, or a +container of `char_type`'s, then copies the string /fmt/: For each format specifier or escape sequence in /fmt/, replace that sequence with either the character(s) it represents, or the sequence of characters within `*this` to which it refers. The bitmasks specified in flags determines what format @@ -387,6 +421,15 @@ specifiers or escape sequences are recognized, by default this is the format used by ECMA-262, ECMAScript Language Specification, Chapter 15 part 5.4.11 String.prototype.replace. +If `fmt` is a function object, then depending on the number of arguments +the function object accepts, it will either: + +* Call `fmt(*this)` and return the result. +* Call `fmt(*this, unspecified-output-iterator)`, where `unspecified-output-iterator` +is an unspecified OutputIterator type used to copy the output to the string result. +* Call `fmt(*this, unspecified-output-iterator, flags)`, where `unspecified-output-iterator` +is an unspecified OutputIterator type used to copy the output to the string result. + See the [link boost_regex.format format syntax guide for more information]. [#boost_regex.match_results.get_allocator] diff --git a/doc/regex_format.qbk b/doc/regex_format.qbk index e59549e1..d9e249ba 100644 --- a/doc/regex_format.qbk +++ b/doc/regex_format.qbk @@ -21,15 +21,10 @@ The algorithm `regex_format` takes the results of a match and creates a new string based upon a format string, `regex_format` can be used for search and replace operations: - template + template OutputIterator regex_format(OutputIterator out, const match_results& m, - const charT* fmt, - match_flag_type flags = 0); - template - OutputIterator regex_format(OutputIterator out, - const match_results& m, - const std::basic_string& fmt, + Formatter fmt, match_flag_type flags = 0); The library also defines the following convenience variation of @@ -39,16 +34,10 @@ than outputting to an iterator. [note This version may not be available, or may be available in a more limited form, depending upon your compilers capabilities] - template + template std::basic_string regex_format (const match_results& m, - const charT* fmt, - match_flag_type flags = 0); - - template - std::basic_string regex_format - (const match_results& m, - const std::basic_string& fmt, + Formatter fmt, match_flag_type flags = 0); Parameters to the main version of the function are passed as follows: @@ -57,7 +46,7 @@ Parameters to the main version of the function are passed as follows: [[Parameter][Description]] [[`OutputIterator out`][An output iterator type, the output string is sent to this iterator. Typically this would be a std::ostream_iterator. ]] [[`const match_results& m`][An instance of [match_results] obtained from one of the matching algorithms above, and denoting what matched. ]] -[[`const charT* fmt`][A format string that determines how the match is transformed into the new string. ]] +[[`Formatter fmt`][Either a format string that determines how the match is transformed into the new string, or a functor that computes the new string from /m/ - see [match_results_format]. ]] [[`unsigned flags`][Optional flags which describe how the format string is to be interpreted. ]] ] diff --git a/doc/regex_replace.qbk b/doc/regex_replace.qbk index 252397aa..58f88778 100644 --- a/doc/regex_replace.qbk +++ b/doc/regex_replace.qbk @@ -18,34 +18,37 @@ output unchanged only if the /flags/ parameter does not have the flag `format_no_copy` set. If the flag `format_first_only` is set then only the first occurrence is replaced rather than all occurrences. - template + template OutputIterator regex_replace(OutputIterator out, BidirectionalIterator first, BidirectionalIterator last, const basic_regex& e, - const basic_string& fmt, + Formatter fmt, match_flag_type flags = match_default); - template + template basic_string regex_replace(const basic_string& s, const basic_regex& e, - const basic_string& fmt, + Formatter fmt, match_flag_type flags = match_default); [h4 Description] - template + template OutputIterator regex_replace(OutputIterator out, BidirectionalIterator first, BidirectionalIterator last, const basic_regex& e, - const basic_string& fmt, + Formatter fmt, match_flag_type flags = match_default); Enumerates all the occurences of expression /e/ in the sequence \[first, last), replacing each occurence with the string that results by merging the match found with the format string /fmt/, and copies the resulting string to /out/. +In the case that /fmt/ is a unary, binary or ternary function object, then the +character sequence generated by that object is copied unchanged to the output when performing +a substitution. If the flag `format_no_copy` is set in /flags/ then unmatched sections of text are not copied to output. @@ -57,6 +60,17 @@ The manner in which the format string /fmt/ is interpretted, along with the rules used for finding matches, are determined by the flags set in /flags/: see [match_flag_type]. +[*Requires] +The type `Formatter` must be either a pointer to a null-terminated string +of type `char_type[]`, or be a container of `char_type`'s (for example +`std::basic_string`) or be a unary, binary or ternary functor +that computes the replacement string from a function call: either +`fmt(what)` which must return a container of `char_type`'s to be used as the +replacement text, or either `fmt(what, out)` or `fmt(what, out, flags)`, both of +which write the replacement text to `*out`, and then return the new +OutputIterator position. In each case `what` is the [match_results] object +that represents the match found. + [*Effects]: Constructs an [regex_iterator] object: regex_iterator @@ -107,12 +121,23 @@ memory allocation (if Boost.Regex is configured in non-recursive mode). [*Returns]: out. - template + template basic_string regex_replace(const basic_string& s, const basic_regex& e, - const basic_string& fmt, + Formatter fmt, match_flag_type flags = match_default); +[*Requires] +The type `Formatter` must be either a pointer to a null-terminated string +of type `char_type[]`, or be a container of `char_type`'s (for example +`std::basic_string`) or be a unary, binary or ternary functor +that computes the replacement string from a function call: either +`fmt(what)` which must return a container of `char_type`'s to be used as the +replacement text, or either `fmt(what, out)` or `fmt(what, out, flags)`, both of +which write the replacement text to `*out`, and then return the new +OutputIterator position. In each case `what` is the [match_results] object +that represents the match found. + [*Effects]: Constructs an object `basic_string result`, calls `regex_replace(back_inserter(result), s.begin(), s.end(), e, fmt, flags)`, and then returns `result`. diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 98fd5941..886395ec 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -747,6 +747,46 @@ struct RegexConcept }; #ifndef BOOST_REGEX_TEST_STD + +template +struct functor1 +{ + typedef typename M::char_type char_type; + const char_type* operator()(const M& m) + { + static const char_type c = static_cast(0); + return &c; + } +}; +template +struct functor1b +{ + typedef typename M::char_type char_type; + std::vector operator()(const M& m) + { + static const std::vector c; + return c; + } +}; +template +struct functor2 +{ + template + O operator()(const M& /*m*/, O i) + { + return i; + } +}; +template +struct functor3 +{ + template + O operator()(const M& /*m*/, O i, regex_constants::match_flag_type) + { + return i; + } +}; + // // BoostRegexConcept: // Test every interface in the Boost implementation: @@ -764,6 +804,7 @@ struct BoostRegexConcept typedef std::basic_string string_type; typedef typename Regex::const_iterator const_iterator; typedef bidirectional_iterator_archetype BidiIterator; + typedef output_iterator_archetype OutputIterator; typedef global_regex_namespace::sub_match sub_match_type; typedef global_regex_namespace::match_results match_results_type; @@ -884,6 +925,58 @@ struct BoostRegexConcept m_stream << m_sub; m_stream << m_cresults; #endif + // + // Extended formatting with a functor: + // + regex_constants::match_flag_type f = regex_constants::match_default; + OutputIterator out = static_object::get(); + functor3 func3; + out = regex_format(out, m_cresults, func3, f); + out = regex_format(out, m_cresults, func3); + functor2 func2; + out = regex_format(out, m_cresults, func2, f); + out = regex_format(out, m_cresults, func2); + functor1 func1; + out = regex_format(out, m_cresults, func1, f); + out = regex_format(out, m_cresults, func1); + + m_string += regex_format(m_cresults, func3, f); + m_string += regex_format(m_cresults, func3); + m_string += regex_format(m_cresults, func2, f); + m_string += regex_format(m_cresults, func2); + m_string += regex_format(m_cresults, func1, f); + m_string += regex_format(m_cresults, func1); + + out = m_cresults.format(out, func3, f); + out = m_cresults.format(out, func3); + out = m_cresults.format(out, func2, f); + out = m_cresults.format(out, func2); + out = m_cresults.format(out, func1, f); + out = m_cresults.format(out, func1); + + m_string += m_cresults.format(func3, f); + m_string += m_cresults.format(func3); + m_string += m_cresults.format(func2, f); + m_string += m_cresults.format(func2); + m_string += m_cresults.format(func1, f); + m_string += m_cresults.format(func1); + + out = regex_replace(out, m_in, m_in, ce, func3, f); + out = regex_replace(out, m_in, m_in, ce, func3); + out = regex_replace(out, m_in, m_in, ce, func2, f); + out = regex_replace(out, m_in, m_in, ce, func2); + out = regex_replace(out, m_in, m_in, ce, func1, f); + out = regex_replace(out, m_in, m_in, ce, func1); + + functor3 > func3s; + functor2 > func2s; + functor1 > func1s; + m_string += regex_replace(m_string, ce, func3s, f); + m_string += regex_replace(m_string, ce, func3s); + m_string += regex_replace(m_string, ce, func2s, f); + m_string += regex_replace(m_string, ce, func2s); + m_string += regex_replace(m_string, ce, func1s, f); + m_string += regex_replace(m_string, ce, func1s); } std::basic_ostream m_stream; @@ -893,6 +986,7 @@ struct BoostRegexConcept const value_type m_char; match_results_type m_results; const match_results_type m_cresults; + BidiIterator m_in; BoostRegexConcept(); BoostRegexConcept(const BoostRegexConcept&); diff --git a/include/boost/regex/v4/match_results.hpp b/include/boost/regex/v4/match_results.hpp index ce18c5c4..e493810b 100644 --- a/include/boost/regex/v4/match_results.hpp +++ b/include/boost/regex/v4/match_results.hpp @@ -1,6 +1,6 @@ /* * - * Copyright (c) 1998-2002 + * Copyright (c) 1998-2009 * John Maddock * * Use, modification and distribution are subject to the @@ -282,42 +282,55 @@ public: return m_subs.end(); } // format: - template + template OutputIterator format(OutputIterator out, - const string_type& fmt, + Functor fmt, match_flag_type flags = format_default) const { - re_detail::trivial_format_traits traits; - return re_detail::regex_format_imp(out, *this, fmt.data(), fmt.data() + fmt.size(), flags, traits); + typedef typename re_detail::compute_functor_type, OutputIterator>::type F; + F func(fmt); + return func(*this, out, flags); } - string_type format(const string_type& fmt, - match_flag_type flags = format_default) const + template + string_type format(Functor fmt, match_flag_type flags = format_default) const { - string_type result; - re_detail::string_out_iterator i(result); - re_detail::trivial_format_traits traits; - re_detail::regex_format_imp(i, *this, fmt.data(), fmt.data() + fmt.size(), flags, traits); + std::basic_string result; + re_detail::string_out_iterator > i(result); + + typedef typename re_detail::compute_functor_type, re_detail::string_out_iterator > >::type F; + F func(fmt); + + func(*this, i, flags); return result; } // format with locale: - template + template OutputIterator format(OutputIterator out, - const string_type& fmt, + Functor fmt, match_flag_type flags, const RegexT& re) const { - return ::boost::re_detail::regex_format_imp(out, *this, fmt.data(), fmt.data() + fmt.size(), flags, re.get_traits()); + typedef ::boost::regex_traits_wrapper traits_type; + typedef typename re_detail::compute_functor_type, OutputIterator, traits_type>::type F; + F func(fmt); + return func(*this, out, flags, re.get_traits()); } - template - string_type format(const string_type& fmt, + template + string_type format(Functor fmt, match_flag_type flags, const RegexT& re) const { - string_type result; - re_detail::string_out_iterator i(result); - ::boost::re_detail::regex_format_imp(i, *this, fmt.data(), fmt.data() + fmt.size(), flags, re.get_traits()); + typedef ::boost::regex_traits_wrapper traits_type; + std::basic_string result; + re_detail::string_out_iterator > i(result); + + typedef typename re_detail::compute_functor_type, re_detail::string_out_iterator >, traits_type >::type F; + F func(fmt); + + func(*this, i, flags, re.get_traits()); return result; } + const_reference get_last_closed_paren()const { return m_last_closed_paren == 0 ? m_null : (*this)[m_last_closed_paren]; diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index 4e95112f..52e0f6b1 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -1,7 +1,7 @@ /* * - * Copyright (c) 1998-2002 - * John Maddock + * Copyright (c) 1998-2009 John Maddock + * Copyright 2008 Eric Niebler. * * Use, modification and distribution are subject to the * Boost Software License, Version 1.0. (See accompanying file @@ -21,6 +21,19 @@ #ifndef BOOST_REGEX_FORMAT_HPP #define BOOST_REGEX_FORMAT_HPP +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#ifndef BOOST_NO_SFINAE +#include +#endif namespace boost{ @@ -76,15 +89,15 @@ struct trivial_format_traits } }; -template +template class basic_regex_formatter { public: typedef typename traits::char_type char_type; basic_regex_formatter(OutputIterator o, const Results& r, const traits& t) : m_traits(t), m_results(r), m_out(o), m_state(output_copy), m_restore_state(output_copy), m_have_conditional(false) {} - OutputIterator format(const char_type* p1, const char_type* p2, match_flag_type f); - OutputIterator format(const char_type* p1, match_flag_type f) + OutputIterator format(ForwardIter p1, ForwardIter p2, match_flag_type f); + OutputIterator format(ForwardIter p1, match_flag_type f) { return format(p1, p1 + m_traits.length(p1), f); } @@ -109,22 +122,75 @@ private: void format_until_scope_end(); bool handle_perl_verb(bool have_brace); - const traits& m_traits; // the traits class for localised formatting operations - const Results& m_results; // the match_results being used. - OutputIterator m_out; // where to send output. - const char_type* m_position; // format string, current position - const char_type* m_end; // format string end - match_flag_type m_flags; // format flags to use - output_state m_state; // what to do with the next character - output_state m_restore_state; // what state to restore to. - bool m_have_conditional; // we are parsing a conditional + inline typename Results::value_type const& get_named_sub(ForwardIter i, ForwardIter j, const mpl::false_&) + { + std::vector v(i, j); + return (i != j) ? this->m_results.named_subexpression(&v[0], &v[0] + v.size()) + : this->m_results.named_subexpression(static_cast(0), static_cast(0)); + } + inline typename Results::value_type const& get_named_sub(ForwardIter i, ForwardIter j, const mpl::true_&) + { + return this->m_results.named_subexpression(i, j); + } + inline typename Results::value_type const& get_named_sub(ForwardIter i, ForwardIter j) + { + typedef typename boost::is_convertible::type tag_type; + return get_named_sub(i, j, tag_type()); + } + inline int get_named_sub_index(ForwardIter i, ForwardIter j, const mpl::false_&) + { + std::vector v(i, j); + return (i != j) ? this->m_results.named_subexpression_index(&v[0], &v[0] + v.size()) + : this->m_results.named_subexpression_index(static_cast(0), static_cast(0)); + } + inline int get_named_sub_index(ForwardIter i, ForwardIter j, const mpl::true_&) + { + return this->m_results.named_subexpression_index(i, j); + } + inline int get_named_sub_index(ForwardIter i, ForwardIter j) + { + typedef typename boost::is_convertible::type tag_type; + return get_named_sub_index(i, j, tag_type()); + } + inline int toi(ForwardIter& i, ForwardIter j, int base, const boost::mpl::false_&) + { + if(i != j) + { + std::vector v(i, j); + const char_type* start = &v[0]; + const char_type* pos = start; + int r = m_traits.toi(pos, &v[0] + v.size(), base); + std::advance(i, pos - start); + return r; + } + return -1; + } + inline int toi(ForwardIter& i, ForwardIter j, int base, const boost::mpl::true_&) + { + return m_traits.toi(i, j, base); + } + inline int toi(ForwardIter& i, ForwardIter j, int base) + { + typedef typename boost::is_convertible::type tag_type; + return toi(i, j, base, tag_type()); + } + + const traits& m_traits; // the traits class for localised formatting operations + const Results& m_results; // the match_results being used. + OutputIterator m_out; // where to send output. + ForwardIter m_position; // format string, current position + ForwardIter m_end; // format string end + match_flag_type m_flags; // format flags to use + output_state m_state; // what to do with the next character + output_state m_restore_state; // what state to restore to. + bool m_have_conditional; // we are parsing a conditional private: basic_regex_formatter(const basic_regex_formatter&); basic_regex_formatter& operator=(const basic_regex_formatter&); }; -template -OutputIterator basic_regex_formatter::format(const char_type* p1, const char_type* p2, match_flag_type f) +template +OutputIterator basic_regex_formatter::format(ForwardIter p1, ForwardIter p2, match_flag_type f) { m_position = p1; m_end = p2; @@ -133,8 +199,8 @@ OutputIterator basic_regex_formatter::format(co return m_out; } -template -void basic_regex_formatter::format_all() +template +void basic_regex_formatter::format_all() { // over and over: while(m_position != m_end) @@ -211,8 +277,8 @@ void basic_regex_formatter::format_all() } } -template -void basic_regex_formatter::format_perl() +template +void basic_regex_formatter::format_perl() { // // On entry *m_position points to a '$' character @@ -233,7 +299,7 @@ void basic_regex_formatter::format_perl() // OK find out what kind it is: // bool have_brace = false; - const char_type* save_position = m_position; + ForwardIter save_position = m_position; switch(*m_position) { case '&': @@ -254,12 +320,12 @@ void basic_regex_formatter::format_perl() case '+': if((++m_position != m_end) && (*m_position == '{')) { - const char_type* base = ++m_position; + ForwardIter base = ++m_position; while((m_position != m_end) && (*m_position != '}')) ++m_position; if(m_position != m_end) { // Named sub-expression: - put(this->m_results.named_subexpression(base, m_position)); + put(get_named_sub(base, m_position)); ++m_position; break; } @@ -279,7 +345,7 @@ void basic_regex_formatter::format_perl() { std::ptrdiff_t len = ::boost::re_detail::distance(m_position, m_end); //len = (std::min)(static_cast(2), len); - int v = m_traits.toi(m_position, m_position + len, 10); + int v = this->toi(m_position, m_position + len, 10); if((v < 0) || (have_brace && ((m_position == m_end) || (*m_position != '}')))) { // Look for a Perl-5.10 verb: @@ -300,8 +366,8 @@ void basic_regex_formatter::format_perl() } } -template -bool basic_regex_formatter::handle_perl_verb(bool have_brace) +template +bool basic_regex_formatter::handle_perl_verb(bool have_brace) { // // We may have a capitalised string containing a Perl action: @@ -313,6 +379,8 @@ bool basic_regex_formatter::handle_perl_verb(bo static const char_type LAST_SUBMATCH_RESULT[] = { 'L', 'A', 'S', 'T', '_', 'S', 'U', 'B', 'M', 'A', 'T', 'C', 'H', '_', 'R', 'E', 'S', 'U', 'L', 'T' }; static const char_type LAST_SUBMATCH_RESULT_ALT[] = { '^', 'N' }; + if(m_position == m_end) + return false; if(have_brace && (*m_position == '^')) ++m_position; @@ -323,7 +391,7 @@ bool basic_regex_formatter::handle_perl_verb(bo m_position += 5; if(have_brace) { - if(*m_position == '}') + if((m_position != m_end) && (*m_position == '}')) ++m_position; else { @@ -339,7 +407,7 @@ bool basic_regex_formatter::handle_perl_verb(bo m_position += 8; if(have_brace) { - if(*m_position == '}') + if((m_position != m_end) && (*m_position == '}')) ++m_position; else { @@ -355,7 +423,7 @@ bool basic_regex_formatter::handle_perl_verb(bo m_position += 9; if(have_brace) { - if(*m_position == '}') + if((m_position != m_end) && (*m_position == '}')) ++m_position; else { @@ -371,7 +439,7 @@ bool basic_regex_formatter::handle_perl_verb(bo m_position += 16; if(have_brace) { - if(*m_position == '}') + if((m_position != m_end) && (*m_position == '}')) ++m_position; else { @@ -387,7 +455,7 @@ bool basic_regex_formatter::handle_perl_verb(bo m_position += 20; if(have_brace) { - if(*m_position == '}') + if((m_position != m_end) && (*m_position == '}')) ++m_position; else { @@ -403,7 +471,7 @@ bool basic_regex_formatter::handle_perl_verb(bo m_position += 2; if(have_brace) { - if(*m_position == '}') + if((m_position != m_end) && (*m_position == '}')) ++m_position; else { @@ -417,8 +485,8 @@ bool basic_regex_formatter::handle_perl_verb(bo return false; } -template -void basic_regex_formatter::format_escape() +template +void basic_regex_formatter::format_escape() { // skip the escape and check for trailing escape: if(++m_position == m_end) @@ -463,7 +531,7 @@ void basic_regex_formatter::format_escape() if(*m_position == static_cast('{')) { ++m_position; - int val = m_traits.toi(m_position, m_end, 16); + int val = this->toi(m_position, m_end, 16); if(val < 0) { // invalid value treat everything as literals: @@ -471,8 +539,9 @@ void basic_regex_formatter::format_escape() put(static_cast('{')); return; } - if(*m_position != static_cast('}')) + if((m_position == m_end) || (*m_position != static_cast('}'))) { + --m_position; while(*m_position != static_cast('\\')) --m_position; ++m_position; @@ -487,7 +556,7 @@ void basic_regex_formatter::format_escape() { std::ptrdiff_t len = ::boost::re_detail::distance(m_position, m_end); len = (std::min)(static_cast(2), len); - int val = m_traits.toi(m_position, m_position + len, 16); + int val = this->toi(m_position, m_position + len, 16); if(val < 0) { --m_position; @@ -549,7 +618,9 @@ void basic_regex_formatter::format_escape() break; } // see if we have a \n sed style backreference: - int v = m_traits.toi(m_position, m_position+1, 10); + std::ptrdiff_t len = ::boost::re_detail::distance(m_position, m_end); + len = (std::min)(static_cast(1), len); + int v = this->toi(m_position, m_position+len, 10); if((v > 0) || ((v == 0) && (m_flags & ::boost::regex_constants::format_sed))) { put(m_results[v]); @@ -561,7 +632,7 @@ void basic_regex_formatter::format_escape() --m_position; std::ptrdiff_t len = ::boost::re_detail::distance(m_position, m_end); len = (std::min)(static_cast(4), len); - v = m_traits.toi(m_position, m_position + len, 8); + v = this->toi(m_position, m_position + len, 8); BOOST_ASSERT(v >= 0); put(static_cast(v)); break; @@ -572,8 +643,8 @@ void basic_regex_formatter::format_escape() } } -template -void basic_regex_formatter::format_conditional() +template +void basic_regex_formatter::format_conditional() { if(m_position == m_end) { @@ -584,15 +655,15 @@ void basic_regex_formatter::format_conditional( int v; if(*m_position == '{') { - const char_type* base = m_position; + ForwardIter base = m_position; ++m_position; - v = m_traits.toi(m_position, m_end, 10); + v = this->toi(m_position, m_end, 10); if(v < 0) { // Try a named subexpression: while((m_position != m_end) && (*m_position != '}')) ++m_position; - v = m_results.named_subexpression_index(base + 1, m_position); + v = this->get_named_sub_index(base + 1, m_position); } if((v < 0) || (*m_position != '}')) { @@ -608,7 +679,7 @@ void basic_regex_formatter::format_conditional( { std::ptrdiff_t len = ::boost::re_detail::distance(m_position, m_end); len = (std::min)(static_cast(2), len); - v = m_traits.toi(m_position, m_position + len, 10); + v = this->toi(m_position, m_position + len, 10); } if(v < 0) { @@ -657,8 +728,8 @@ void basic_regex_formatter::format_conditional( } } -template -void basic_regex_formatter::format_until_scope_end() +template +void basic_regex_formatter::format_until_scope_end() { do { @@ -669,8 +740,8 @@ void basic_regex_formatter::format_until_scope_ }while(m_position != m_end); } -template -void basic_regex_formatter::put(char_type c) +template +void basic_regex_formatter::put(char_type c) { // write a single character to output // according to which case translation mode we are in: @@ -699,8 +770,8 @@ void basic_regex_formatter::put(char_type c) ++m_out; } -template -void basic_regex_formatter::put(const sub_match_type& sub) +template +void basic_regex_formatter::put(const sub_match_type& sub) { typedef typename sub_match_type::iterator iterator_type; iterator_type i = sub.first; @@ -738,10 +809,10 @@ public: #endif }; -template +template OutputIterator regex_format_imp(OutputIterator out, const match_results& m, - const charT* p1, const charT* p2, + ForwardIter p1, ForwardIter p2, match_flag_type flags, const traits& t ) @@ -754,57 +825,279 @@ OutputIterator regex_format_imp(OutputIterator out, re_detail::basic_regex_formatter< OutputIterator, match_results, - traits > f(out, m, t); + traits, ForwardIter> f(out, m, t); return f.format(p1, p2, flags); } +#ifndef BOOST_NO_SFINAE + +BOOST_MPL_HAS_XXX_TRAIT_DEF(const_iterator); + +struct any_type { any_type(...); }; +typedef char no_type; +typedef char (&unary_type)[2]; +typedef char (&binary_type)[3]; +typedef char (&ternary_type)[4]; + +no_type check_is_formatter(unary_type, binary_type, ternary_type); +template +unary_type check_is_formatter(T const &, binary_type, ternary_type); +template +binary_type check_is_formatter(unary_type, T const &, ternary_type); +template +binary_type check_is_formatter(T const &, U const &, ternary_type); +template +ternary_type check_is_formatter(unary_type, binary_type, T const &); +template +ternary_type check_is_formatter(T const &, binary_type, U const &); +template +ternary_type check_is_formatter(unary_type, T const &, U const &); +template +ternary_type check_is_formatter(T const &, U const &, V const &); + +struct unary_binary_ternary +{ + typedef unary_type (*unary_fun)(any_type); + typedef binary_type (*binary_fun)(any_type, any_type); + typedef ternary_type (*ternary_fun)(any_type, any_type, any_type); + operator unary_fun(); + operator binary_fun(); + operator ternary_fun(); +}; + +template::value> +struct formatter_wrapper + : Formatter + , unary_binary_ternary +{ + formatter_wrapper(){} +}; + +template +struct formatter_wrapper + : unary_binary_ternary +{ + operator Formatter *(); +}; + +template +struct formatter_wrapper + : unary_binary_ternary +{ + operator Formatter *(); +}; + +template +struct format_traits_imp +{ +private: + // + // F must be a pointer, a function, or a class with a function call operator: + // + BOOST_STATIC_ASSERT((::boost::is_pointer::value || ::boost::is_function::value || ::boost::is_class::value)); + static formatter_wrapper f; + static M m; + static O out; + static boost::regex_constants::match_flag_type flags; +public: + BOOST_STATIC_CONSTANT(int, value = sizeof(check_is_formatter(f(m), f(m, out), f(m, out, flags)))); +}; + +template +struct format_traits +{ +public: + // + // Type is mpl::int_ where N is one of: + // + // 0 : F is a pointer to a presumably null-terminated string. + // 1 : F is a character-container such as a std::string. + // 2 : F is a Unary Functor. + // 3 : F is a Binary Functor. + // 4 : F is a Ternary Functor. + // + typedef typename boost::mpl::if_< + boost::mpl::and_, boost::mpl::not_::type> > >, + boost::mpl::int_<0>, + typename boost::mpl::if_< + has_const_iterator, + boost::mpl::int_<1>, + boost::mpl::int_::value> + >::type + >::type type; + // + // This static assertion will fail if the functor passed does not accept + // the same type of arguments passed. + // + BOOST_STATIC_ASSERT( boost::is_class::value && !has_const_iterator::value ? (type::value > 1) : true); +}; + +#else // BOOST_NO_SFINAE + +template +struct format_traits +{ +public: + // + // Type is mpl::int_ where N is one of: + // + // 0 : F is a pointer to a presumably null-terminated string. + // 1 : F is a character-container such as a std::string. + // + // Other options such as F being a Functor are not supported without + // SFINAE support. + // + typedef typename boost::mpl::if_< + boost::is_pointer, + boost::mpl::int_<0>, + boost::mpl::int_<1> + >::type type; +}; + +#endif // BOOST_NO_SFINAE + +template +struct format_functor3 +{ + format_functor3(Base b) : func(b) {} + template + OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f) + { + return func(m, i, f); + } + template + OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits&) + { + return (*this)(m, i, f); + } +private: + Base func; +}; + +template +struct format_functor2 +{ + format_functor2(Base b) : func(b) {} + template + OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type /*f*/) + { + return func(m, i); + } + template + OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits&) + { + return (*this)(m, i, f); + } +private: + Base func; +}; + +template +struct format_functor1 +{ + format_functor1(Base b) : func(b) {} + + template + OutputIter do_format_string(const S& s, OutputIter i) + { + return re_detail::copy(s.begin(), s.end(), i); + } + template + inline OutputIter do_format_string(const S* s, OutputIter i) + { + while(s && *s) + { + *i = *s; + ++i; + ++s; + } + return i; + } + template + OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type /*f*/) + { + return do_format_string(func(m), i); + } + template + OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits&) + { + return (*this)(m, i, f); + } +private: + Base func; +}; + +template +struct format_functor_c_string +{ + format_functor_c_string(const charT* ps) : func(ps) {} + + template + OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits& t = Traits()) + { + typedef typename Match::char_type char_type; + const charT* end = func; + while(*end) ++end; + return regex_format_imp(i, m, func, end, f, t); + } +private: + const charT* func; +}; + +template +struct format_functor_container +{ + format_functor_container(const Container& c) : func(c) {} + + template + OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits& t = Traits()) + { + typedef typename Match::char_type char_type; + return re_detail::regex_format_imp(i, m, func.begin(), func.end(), f, t); + } +private: + const Container& func; +}; + +template > +struct compute_functor_type +{ + typedef typename format_traits::type tag; + typedef typename boost::remove_cv< typename boost::remove_pointer::type>::type maybe_char_type; + + typedef typename mpl::if_< + ::boost::is_same >, format_functor_c_string, + typename mpl::if_< + ::boost::is_same >, format_functor_container, + typename mpl::if_< + ::boost::is_same >, format_functor1, + typename mpl::if_< + ::boost::is_same >, format_functor2, + format_functor3 + >::type + >::type + >::type + >::type type; +}; } // namespace re_detail -template -OutputIterator regex_format(OutputIterator out, - const match_results& m, - const charT* fmt, +template +inline OutputIterator regex_format(OutputIterator out, + const match_results& m, + Functor fmt, match_flag_type flags = format_all ) { - re_detail::trivial_format_traits traits; - return re_detail::regex_format_imp(out, m, fmt, fmt + traits.length(fmt), flags, traits); + return m.format(out, fmt, flags); } -template -OutputIterator regex_format(OutputIterator out, - const match_results& m, - const std::basic_string& fmt, - match_flag_type flags = format_all - ) -{ - re_detail::trivial_format_traits traits; - return re_detail::regex_format_imp(out, m, fmt.data(), fmt.data() + fmt.size(), flags, traits); -} - -template -std::basic_string regex_format(const match_results& m, - const charT* fmt, +template +inline std::basic_string::char_type> regex_format(const match_results& m, + Functor fmt, match_flag_type flags = format_all) { - std::basic_string result; - re_detail::string_out_iterator > i(result); - re_detail::trivial_format_traits traits; - re_detail::regex_format_imp(i, m, fmt, fmt + traits.length(fmt), flags, traits); - return result; -} - -template -std::basic_string regex_format(const match_results& m, - const std::basic_string& fmt, - match_flag_type flags = format_all) -{ - std::basic_string result; - re_detail::string_out_iterator > i(result); - re_detail::trivial_format_traits traits; - re_detail::regex_format_imp(i, m, fmt.data(), fmt.data() + fmt.size(), flags, traits); - return result; + return m.format(fmt, flags); } #ifdef BOOST_MSVC diff --git a/include/boost/regex/v4/regex_replace.hpp b/include/boost/regex/v4/regex_replace.hpp index c4544c05..ac8e3c81 100644 --- a/include/boost/regex/v4/regex_replace.hpp +++ b/include/boost/regex/v4/regex_replace.hpp @@ -1,6 +1,6 @@ /* * - * Copyright (c) 1998-2002 + * Copyright (c) 1998-2009 * John Maddock * * Use, modification and distribution are subject to the @@ -35,12 +35,12 @@ namespace boost{ #pragma warning(pop) #endif -template +template OutputIterator regex_replace(OutputIterator out, BidirectionalIterator first, BidirectionalIterator last, const basic_regex& e, - const charT* fmt, + Formatter fmt, match_flag_type flags = match_default) { regex_iterator i(first, last, e, flags); @@ -69,21 +69,10 @@ OutputIterator regex_replace(OutputIterator out, return out; } -template -inline OutputIterator regex_replace(OutputIterator out, - Iterator first, - Iterator last, - const basic_regex& e, - const std::basic_string& fmt, - match_flag_type flags = match_default) -{ - return regex_replace(out, first, last, e, fmt.c_str(), flags); -} - -template +template std::basic_string regex_replace(const std::basic_string& s, const basic_regex& e, - const charT* fmt, + Formatter fmt, match_flag_type flags = match_default) { std::basic_string result; @@ -92,18 +81,6 @@ std::basic_string regex_replace(const std::basic_string& s, return result; } -template -std::basic_string regex_replace(const std::basic_string& s, - const basic_regex& e, - const std::basic_string& fmt, - match_flag_type flags = match_default) -{ - std::basic_string result; - re_detail::string_out_iterator > i(result); - regex_replace(i, s.begin(), s.end(), e, fmt.c_str(), flags); - return result; -} - #ifdef BOOST_MSVC #pragma warning(push) #pragma warning(disable: 4103) From 603e98d186176956c5d1cef73e87a787fdaa2b7d Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 30 Oct 2009 18:15:55 +0000 Subject: [PATCH 11/77] Fixes #3425. [SVN r57252] --- build/Jamfile.v2 | 1 + 1 file changed, 1 insertion(+) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 1437e935..01b14e26 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -194,6 +194,7 @@ if $(gHAS_ICU) BOOST_REGEX_ICU_OPTS = "freebsd:/usr/local/include" ; ICU_SEARCH_OPTS = "freebsd:$(ICU_PATH)/lib" ; BOOST_REGEX_ICU_OPTS += "BOOST_HAS_ICU=1" ; + BOOST_REGEX_ICU_OPTS += "$(gICU_LIBS)" ; if $(ICU_PATH) { From 898b49fa89e1964d61536fdbb5955a95555d7636 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 30 Oct 2009 18:45:41 +0000 Subject: [PATCH 12/77] Fixes #3389. Updated and regenerated docs. [SVN r57254] --- doc/history.qbk | 4 + .../background_information/examples.html | 6 +- .../background_information/history.html | 27 ++++-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 ++-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 ++-- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 ++++++------- doc/html/boost_regex/syntax/basic_syntax.html | 44 ++++----- doc/html/boost_regex/syntax/perl_syntax.html | 96 +++++++++---------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- src/fileiter.cpp | 21 +++- 33 files changed, 221 insertions(+), 199 deletions(-) diff --git a/doc/history.qbk b/doc/history.qbk index 4f78bcee..4350cb8d 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -11,6 +11,10 @@ [h4 Boost 1.42] * Added support for Functors rather than strings as format expressions. +* Fixed tickets +[@https://svn.boost.org/trac/boost/ticket/2802 #2802], +[@https://svn.boost.org/trac/boost/ticket/2802 #3425], +[@https://svn.boost.org/trac/boost/ticket/2802 #3507] [h4 Boost 1.40] diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 2c2e3639..fa062bf7 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
- + Test Programs
@@ -107,7 +107,7 @@ Files: captures_test.cpp.

- + Example programs
@@ -133,7 +133,7 @@ Files: regex_timer.cpp.

- + Code snippets
diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index b5b7a907..76fdcb90 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -26,15 +26,22 @@ History
- + Boost 1.42
-
  • +
      +
    • Added support for Functors rather than strings as format expressions. -
    +
  • +
  • + Fixed tickets #2802, + #3425, + #3507 +
  • +
- + Boost 1.40
@@ -43,7 +50,7 @@ branch resets and recursive regular expressions.
- + Boost 1.38
@@ -70,7 +77,7 @@
- + Boost 1.34
@@ -93,7 +100,7 @@
- + Boost 1.33.1
@@ -163,7 +170,7 @@
- + Boost 1.33.0
@@ -218,7 +225,7 @@
- + Boost 1.32.1
@@ -226,7 +233,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
- + Boost 1.31.0
diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 732fb07e..18196254 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

- + Win32 localization model.
@@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

- + C localization model.
@@ -114,7 +114,7 @@ libraries including version 1 of this library.

- + C++ localization model.
@@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

- + Providing a message catalogue
diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index e0df6eec..d0a8ec9f 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
- + C++

@@ -36,7 +36,7 @@ Report on C++ Library Extensions.

- + ECMAScript / JavaScript
@@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

- + Perl

@@ -62,7 +62,7 @@ (??{code}) Not implementable in a compiled strongly typed language.

- + POSIX

@@ -82,7 +82,7 @@ a custom traits class.

- + Unicode

diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index a977b271..647a31bb 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

- + Marked sub-expressions

@@ -218,7 +218,7 @@ output stream.

- + Unmatched Sub-Expressions

@@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

- + Repeated Captures

diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 8461f686..af6214dd 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

- + Grouping

@@ -40,7 +40,7 @@ you want a to output literal parenthesis.

- + Conditionals

@@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

- + Placeholder Sequences
@@ -319,7 +319,7 @@ as a literal.

- + Escape Sequences
diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index e6c47fd0..f5353f48 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

- + Building with bjam

@@ -58,7 +58,7 @@ started guide for more information.

- + Building With Unicode and ICU Support
@@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

- + Building via makefiles
- + Borland C++ Builder:
- + GCC(2.95 and later)

@@ -302,7 +302,7 @@ see the config library documentation.

- + Sun Workshop 6.1

@@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

- + Makefiles for Other compilers
diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 9954dc42..d7400e2b 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
- + Synopsis
#include <boost/pattern_except.hpp>
@@ -54,7 +54,7 @@
 } // namespace boost
 
- + Description
regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
index a630316d..b9603b98 100644
--- a/doc/html/boost_regex/ref/basic_regex.html
+++ b/doc/html/boost_regex/ref/basic_regex.html
@@ -27,7 +27,7 @@
  basic_regex
 
 
- + Synopsis
#include <boost/regex.hpp>
@@ -244,7 +244,7 @@
 } // namespace boost
 
- + Description

@@ -327,7 +327,7 @@ basic_regex.

-

Table 1. basic_regex default construction postconditions

+

Table 1. basic_regex default construction postconditions

@@ -407,7 +407,7 @@ flags specified in f.

-

Table 2. Postconditions for basic_regex construction

+

Table 2. Postconditions for basic_regex construction

@@ -512,7 +512,7 @@ specified in f.

-

Table 3. Postconditions for basic_regex construction

+

Table 3. Postconditions for basic_regex construction

@@ -616,7 +616,7 @@ according the option flags specified in f.

-

Table 4. Postconditions for basic_regex construction

+

Table 4. Postconditions for basic_regex construction

@@ -727,7 +727,7 @@ flags specified in f.

-

Table 5. Postconditions for basic_regex construction

+

Table 5. Postconditions for basic_regex construction

@@ -829,7 +829,7 @@ flags specified in f.

-

Table 6. Postconditions for basic_regex construction

+

Table 6. Postconditions for basic_regex construction

@@ -1043,7 +1043,7 @@ in f.

-

Table 7. Postconditions for basic_regex::assign

+

Table 7. Postconditions for basic_regex::assign

diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 18b1d732..b4ef8e33 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

- + Minimal requirements.
@@ -381,7 +381,7 @@
- + Additional Optional Requirements
diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index 291ee71f..e7fc5577 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

- + Algorithm regex_format
diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index f8c7c708..8f99f11b 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
- + Synopsis

@@ -57,7 +57,7 @@ } // namespace boost

- + Description

diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index dd1a72cf..a1e02b6c 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

- + Description

diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index ddb66e3f..1a7161ae 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

- + Synopsis
#include <boost/regex.hpp>
@@ -167,7 +167,7 @@
          match_results<BidirectionalIterator, Allocator>& m2);
 
- + Description

diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 1e813aed..eae2345b 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

- + u32regex_match

@@ -89,7 +89,7 @@ }

- + u32regex_search

@@ -128,7 +128,7 @@ }

- + u32regex_replace

diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 62992e75..369b4d7f 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

- + u32regex_iterator

@@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

- + u32regex_token_iterator

diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index c4904305..d431ac25 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

- + regex_match

@@ -82,7 +82,7 @@ }

- + regex_match (second overload)
@@ -110,7 +110,7 @@ }
- + regex_search

@@ -149,7 +149,7 @@ }

- + regex_search (second overload)
@@ -164,7 +164,7 @@ + s.GetLength(), e, f);

- + regex_replace

diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 07f5da99..9b897d92 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

- + regex_iterator creation helper
@@ -68,7 +68,7 @@ }
- + regex_token_iterator creation helpers
diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 843f96c4..1fd8fad8 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

- + regcomp

@@ -379,7 +379,7 @@

- + regerror

@@ -467,7 +467,7 @@

- + regexec

@@ -537,7 +537,7 @@

- + regfree

diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index fff1bf7f..0bb65c83 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

- + Description

@@ -436,7 +436,7 @@ m.

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index ad738b0b..31c1a74f 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

- + Description
template <class BidirectionalIterator, class Allocator, class charT, class traits>
@@ -360,7 +360,7 @@
         Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
       

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 26acd84b..ed074af2 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

- + Description
template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
@@ -196,7 +196,7 @@
         and then returns result.
       

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index b05f72bf..3e782333 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

- + Description
template <class BidirectionalIterator, class Allocator, class charT, class traits>
@@ -355,7 +355,7 @@
         Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
       

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 60d42bdf..d3280756 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

- + Description

@@ -383,7 +383,7 @@ m.

- + Examples

diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index c3161c62..b755fa1f 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

- + Description

diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index b1dc0b72..3bf60be1 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

- + Description
- + Members

@@ -473,7 +473,7 @@

- + sub_match non-member operators
@@ -1008,7 +1008,7 @@ + m2.str().

- + Stream inserter

diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index cf3e7fe0..05a0ee58 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

- + Synopsis

@@ -46,7 +46,7 @@

- + POSIX Extended Syntax

@@ -56,7 +56,7 @@

.[{()\*+?|^$
- + Wildcard:

@@ -74,7 +74,7 @@

- + Anchors:

@@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

- + Marked sub-expressions:
@@ -98,7 +98,7 @@ to by a back-reference.

- + Repeats:

@@ -184,7 +184,7 @@ cab operator to be applied to.

- + Back references:

@@ -214,7 +214,7 @@ cab

- + Alternation

@@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

- + Character sets:
@@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

- + Single characters:
@@ -249,7 +249,7 @@ cab or 'c'.

- + Character ranges:
@@ -265,7 +265,7 @@ cab the code points of the characters only.

- + Negation:

@@ -274,7 +274,7 @@ cab range a-c.

- + Character classes:
@@ -284,7 +284,7 @@ cab character class names.

- + Collating Elements:
@@ -312,7 +312,7 @@ cab matches a NUL character.

- + Equivalence classes:
@@ -329,7 +329,7 @@ cab or even all locales on one platform.

- + Combinations:

@@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

- + Escapes

@@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

- + Escapes matching a specific character
@@ -552,7 +552,7 @@ cab
- + "Single character" character classes:
@@ -706,7 +706,7 @@ cab
- + Character Properties
@@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

- + Word Boundaries

@@ -888,7 +888,7 @@ cab

- + Buffer boundaries
@@ -979,7 +979,7 @@ cab
- + Continuation Escape
@@ -991,7 +991,7 @@ cab match to start where the last one ended.

- + Quoting escape
@@ -1005,7 +1005,7 @@ cab \*+aaa
- + Unicode escapes
@@ -1056,7 +1056,7 @@ cab
- + Any other escape
@@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

- + Operator precedence
@@ -1101,7 +1101,7 @@ cab
- + What Gets Matched
@@ -1111,11 +1111,11 @@ cab rule.

- + Variations

- + Egrep

@@ -1136,7 +1136,7 @@ cab used with the -E option.

- + awk

@@ -1150,7 +1150,7 @@ cab these by default anyway.

- + Options

@@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

- + References

diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index f2812f9d..e3271b52 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

- + Synopsis

@@ -45,7 +45,7 @@

- + POSIX Basic Syntax

@@ -55,7 +55,7 @@

.[\*^$
- + Wildcard:

@@ -73,7 +73,7 @@

- + Anchors:

@@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

- + Marked sub-expressions:
@@ -97,7 +97,7 @@ by a back-reference.

- + Repeats:

@@ -155,7 +155,7 @@ aaaa to.

- + Back references:

@@ -173,7 +173,7 @@ aaaa

aaabba
- + Character sets:
@@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

- + Single characters:
@@ -195,7 +195,7 @@ aaaa or 'c'.

- + Character ranges:
@@ -211,7 +211,7 @@ aaaa of the characters only.

- + Negation:

@@ -220,7 +220,7 @@ aaaa range a-c.

- + Character classes:
@@ -230,7 +230,7 @@ aaaa character class names.

- + Collating Elements:
@@ -259,7 +259,7 @@ aaaa element names.

- + Equivalence classes:
@@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

- + Combinations:

@@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

- + Escapes

@@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

- + What Gets Matched

@@ -309,13 +309,13 @@ aaaa rule.

- + Variations

- + Grep

@@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

- + emacs

@@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

- + Options

@@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

- + References

diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 6bae14c3..2cf6ea4a 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

- + Synopsis

@@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

- + Perl Regular Expression Syntax

@@ -53,7 +53,7 @@

.[{()\*+?|^$
- + Wildcard

@@ -73,7 +73,7 @@

- + Anchors

@@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

- + Marked sub-expressions
@@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

- + Non-marking grouping
@@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

- + Repeats

@@ -188,7 +188,7 @@ to be applied to.

- + Non greedy repeats
@@ -218,7 +218,7 @@ while consuming as little input as possible.

- + Pocessive repeats
@@ -250,7 +250,7 @@ while giving nothing back.

- + Back references

@@ -360,7 +360,7 @@ named "two".

- + Alternation

@@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

- + Character sets

@@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

- + Single characters

@@ -407,7 +407,7 @@ 'b', or 'c'.

- + Character ranges
@@ -421,7 +421,7 @@ sensitive.

- + Negation

@@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

- + Character classes
@@ -441,7 +441,7 @@ class names.

- + Collating Elements
@@ -463,7 +463,7 @@ matches a \0 character.

- + Equivalence classes
@@ -480,7 +480,7 @@ or even all locales on one platform.

- + Escaped Characters
@@ -492,7 +492,7 @@ is not a "word" character.

- + Combinations

@@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

- + Escapes

@@ -692,7 +692,7 @@

- + "Single character" character classes:
@@ -894,7 +894,7 @@
- + Character Properties
@@ -1002,7 +1002,7 @@ as does \p{digit}.

- + Word Boundaries

@@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

- + Buffer boundaries

@@ -1046,7 +1046,7 @@ to the regular expression \n*\z

- + Continuation Escape
@@ -1058,7 +1058,7 @@ one ended.

- + Quoting escape

@@ -1071,7 +1071,7 @@ \*+aaa

- + Unicode escapes

@@ -1081,7 +1081,7 @@ followed by a sequence of zero or more combining characters.

- + Matching Line Endings
@@ -1090,7 +1090,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

- + Keeping back some text
@@ -1105,7 +1105,7 @@ This can be used to simulate variable width lookbehind assertions.

- + Any other escape
@@ -1114,7 +1114,7 @@ \@ matches a literal '@'.

- + Perl Extended Patterns
@@ -1123,7 +1123,7 @@ (?.

- + Named Subexpressions
@@ -1145,14 +1145,14 @@ format string for search and replace operations, or in the match_results member functions.

- + Comments

(?# ... ) is treated as a comment, it's contents are ignored.

- + Modifiers

@@ -1166,7 +1166,7 @@ pattern only.

- + Non-marking groups
@@ -1175,7 +1175,7 @@ an additional sub-expression.

- + Branch reset

@@ -1197,7 +1197,7 @@ # 1 2 2 3 2 3 4

- + Lookahead

@@ -1220,7 +1220,7 @@ could be used to validate the password.

- + Lookbehind

@@ -1234,7 +1234,7 @@ (pattern must be of fixed length).

- + Independent sub-expressions
@@ -1247,7 +1247,7 @@ no match is found at all.

- + Recursive Expressions
@@ -1271,7 +1271,7 @@ to the next sub-expression to be declared.

- + Conditional Expressions
@@ -1319,7 +1319,7 @@
- + Operator precedence
@@ -1354,7 +1354,7 @@

- + What gets matched

@@ -1529,7 +1529,7 @@

- + Variations

@@ -1538,7 +1538,7 @@ and JScript are all synonyms for perl.

- + Options

@@ -1550,7 +1550,7 @@ are to be applied.

- + Pattern Modifiers

@@ -1562,7 +1562,7 @@ and no_mod_s.

- + References

diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index fd80edd8..54450406 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

- + Rely on wchar_t

@@ -56,7 +56,7 @@

- + Use a Unicode Aware Regular Expression Type.
diff --git a/doc/html/index.html b/doc/html/index.html index 68c0060c..2f620435 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
-

+

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)

@@ -196,7 +196,7 @@

- +

Last revised: October 30, 2009 at 17:13:44 GMT

Last revised: October 30, 2009 at 18:27:08 GMT


diff --git a/src/fileiter.cpp b/src/fileiter.cpp index 7d9c7f88..ff1d1119 100644 --- a/src/fileiter.cpp +++ b/src/fileiter.cpp @@ -258,11 +258,22 @@ void mapfile::lock(pointer* node)const *p = 0; *(reinterpret_cast(*node)) = 1; } - std::fseek(hfile, (node - _first) * buf_size, SEEK_SET); - if(node == _last - 1) - std::fread(*node + sizeof(int), _size % buf_size, 1, hfile); - else - std::fread(*node + sizeof(int), buf_size, 1, hfile); + + std::size_t read_size = 0; + int read_pos = std::fseek(hfile, (node - _first) * buf_size, SEEK_SET); + + if(0 == read_pos && node == _last - 1) + read_size = std::fread(*node + sizeof(int), _size % buf_size, 1, hfile); + else + read_size = std::fread(*node + sizeof(int), buf_size, 1, hfile); +#ifndef BOOST_NO_EXCEPTIONS + if((read_size == 0) || (std::ferror(hfile))) + { + throw std::runtime_error("Unable to read file."); + } +#else + BOOST_REGEX_NOEH_ASSERT((0 == std::ferror(hfile)) && (read_size != 0)); +#endif } else { From 6e1f3dccebaa3697eff017dcd7ccd5e42840b1f6 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 7 Nov 2009 15:32:45 +0000 Subject: [PATCH 13/77] Improved error messages generated for thrown exceptions. Suppressed "gcc -Wall -Wextra -pedantic" and "msvc /W4" warnings. Updated and rebuilt docs. [SVN r57451] --- doc/history.qbk | 1 + .../background_information/examples.html | 6 +- .../background_information/history.html | 20 +- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 +- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 +- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 +-- doc/html/boost_regex/syntax/basic_syntax.html | 44 +- doc/html/boost_regex/syntax/perl_syntax.html | 96 ++--- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- example/snippets/regex_grep_example_1.cpp | 2 + example/snippets/regex_match_example.cpp | 4 +- example/snippets/regex_merge_example.cpp | 4 +- example/snippets/regex_replace_example.cpp | 4 +- example/snippets/regex_split_example_1.cpp | 4 +- .../snippets/regex_token_iterator_eg_1.cpp | 4 +- example/timer/regex_timer.cpp | 30 +- include/boost/regex/concepts.hpp | 4 +- include/boost/regex/pending/object_cache.hpp | 2 + .../boost/regex/v4/basic_regex_creator.hpp | 6 +- include/boost/regex/v4/basic_regex_parser.hpp | 393 +++++++++++++----- include/boost/regex/v4/cregex.hpp | 43 +- include/boost/regex/v4/error_type.hpp | 13 +- include/boost/regex/v4/match_flags.hpp | 90 ++-- .../regex/v4/perl_matcher_non_recursive.hpp | 4 +- .../boost/regex/v4/perl_matcher_recursive.hpp | 2 +- include/boost/regex/v4/regex_format.hpp | 12 +- .../boost/regex/v4/regex_traits_defaults.hpp | 2 +- src/cregex.cpp | 6 +- src/posix_api.cpp | 1 + src/regex_traits_defaults.cpp | 49 +-- src/wide_posix_api.cpp | 1 + test/c_compiler_checks/posix_api_check.cpp | 8 +- .../wide_posix_api_check.cpp | 12 +- test/regress/test_deprecated.cpp | 4 +- test/regress/test_escapes.cpp | 2 +- test/regress/test_simple_repeats.cpp | 1 + test/static_mutex/static_mutex_test.cpp | 2 +- 60 files changed, 662 insertions(+), 436 deletions(-) diff --git a/doc/history.qbk b/doc/history.qbk index 4350cb8d..93721338 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -11,6 +11,7 @@ [h4 Boost 1.42] * Added support for Functors rather than strings as format expressions. +* Improved error reporting when throwing exceptions to include better more relevant information. * Fixed tickets [@https://svn.boost.org/trac/boost/ticket/2802 #2802], [@https://svn.boost.org/trac/boost/ticket/2802 #3425], diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index fa062bf7..1e41d80a 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
- + Test Programs
@@ -107,7 +107,7 @@ Files: captures_test.cpp.

- + Example programs
@@ -133,7 +133,7 @@ Files: regex_timer.cpp.

- + Code snippets
diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 76fdcb90..78843041 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -26,7 +26,7 @@ History
- + Boost 1.42
@@ -34,6 +34,10 @@
  • Added support for Functors rather than strings as format expressions.
  • +
  • + Improved error reporting when throwing exceptions to include better more + relevant information. +
  • Fixed tickets #2802, #3425, @@ -41,7 +45,7 @@
  • - + Boost 1.40
    @@ -50,7 +54,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -77,7 +81,7 @@
    - + Boost 1.34
    @@ -100,7 +104,7 @@
    - + Boost 1.33.1
    @@ -170,7 +174,7 @@
    - + Boost 1.33.0
    @@ -225,7 +229,7 @@
    - + Boost 1.32.1
    @@ -233,7 +237,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 18196254..8295fabf 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index d0a8ec9f..3750ec0f 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -62,7 +62,7 @@ (??{code}) Not implementable in a compiled strongly typed language.

    - + POSIX

    @@ -82,7 +82,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 647a31bb..0f96c192 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index af6214dd..405559a1 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index f5353f48..3814b219 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -302,7 +302,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index d7400e2b..59fd3394 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index b9603b98..3d075673 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
      basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -727,7 +727,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -829,7 +829,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1043,7 +1043,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index b4ef8e33..cf7b4bfc 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -381,7 +381,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index e7fc5577..e180cd65 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 8f99f11b..be29dc1e 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index a1e02b6c..60e92782 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 1a7161ae..ff713f31 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index eae2345b..64e132b3 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 369b4d7f..35218c32 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index d431ac25..aa5a33f3 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 9b897d92..4fb400ee 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 1fd8fad8..8b29bc24 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

    - + regcomp

    @@ -379,7 +379,7 @@

    - + regerror

    @@ -467,7 +467,7 @@

    - + regexec

    @@ -537,7 +537,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 0bb65c83..bad49256 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -436,7 +436,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 31c1a74f..d583cb24 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -360,7 +360,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index ed074af2..bc80e088 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -196,7 +196,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 3e782333..57c74191 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -355,7 +355,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index d3280756..c27d4839 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -383,7 +383,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index b755fa1f..de52d978 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 3bf60be1..14974ee7 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members

    @@ -473,7 +473,7 @@

    - + sub_match non-member operators
    @@ -1008,7 +1008,7 @@ + m2.str().

    - + Stream inserter

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 05a0ee58..2e4acb2d 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1101,7 +1101,7 @@ cab
    - + What Gets Matched
    @@ -1111,11 +1111,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1136,7 +1136,7 @@ cab used with the -E option.

    - + awk

    @@ -1150,7 +1150,7 @@ cab these by default anyway.

    - + Options

    @@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index e3271b52..8e72991b 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 2cf6ea4a..d25b6b42 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Pocessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1046,7 +1046,7 @@ to the regular expression \n*\z

    - + Continuation Escape
    @@ -1058,7 +1058,7 @@ one ended.

    - + Quoting escape

    @@ -1071,7 +1071,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1081,7 +1081,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1090,7 +1090,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1105,7 +1105,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1114,7 +1114,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1123,7 +1123,7 @@ (?.

    - + Named Subexpressions
    @@ -1145,14 +1145,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1166,7 +1166,7 @@ pattern only.

    - + Non-marking groups
    @@ -1175,7 +1175,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1197,7 +1197,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1220,7 +1220,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1234,7 +1234,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1247,7 +1247,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1271,7 +1271,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1319,7 +1319,7 @@
    - + Operator precedence
    @@ -1354,7 +1354,7 @@

    - + What gets matched

    @@ -1529,7 +1529,7 @@

    - + Variations

    @@ -1538,7 +1538,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1550,7 +1550,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1562,7 +1562,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 54450406..c42b2069 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index 2f620435..49e413a5 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: October 30, 2009 at 18:27:08 GMT

    Last revised: November 06, 2009 at 18:12:56 GMT


    diff --git a/example/snippets/regex_grep_example_1.cpp b/example/snippets/regex_grep_example_1.cpp index 13161dfb..0f0f4ede 100644 --- a/example/snippets/regex_grep_example_1.cpp +++ b/example/snippets/regex_grep_example_1.cpp @@ -67,6 +67,8 @@ public: what[5].first - base; return true; } +private: + IndexClassesPred& operator=(const IndexClassesPred&); }; void IndexClasses(map_type& m, const std::string& file) diff --git a/example/snippets/regex_match_example.cpp b/example/snippets/regex_match_example.cpp index bd35d169..f714f94b 100644 --- a/example/snippets/regex_match_example.cpp +++ b/example/snippets/regex_match_example.cpp @@ -55,11 +55,11 @@ int process_ftp(const char* response, std::string* msg) istream& getline(istream& is, std::string& s) { s.erase(); - char c = is.get(); + char c = static_cast(is.get()); while(c != '\n') { s.append(1, c); - c = is.get(); + c = static_cast(is.get()); } return is; } diff --git a/example/snippets/regex_merge_example.cpp b/example/snippets/regex_merge_example.cpp index 9b226ecd..a537189d 100644 --- a/example/snippets/regex_merge_example.cpp +++ b/example/snippets/regex_merge_example.cpp @@ -86,8 +86,8 @@ int main(int argc, const char** argv) return 0; } -extern const char* pre_expression = "(<)|(>)|\\r"; -extern const char* pre_format = "(?1<)(?2>)"; +const char* pre_expression = "(<)|(>)|\\r"; +const char* pre_format = "(?1<)(?2>)"; const char* expression_text = // preprocessor directives: index 1 diff --git a/example/snippets/regex_replace_example.cpp b/example/snippets/regex_replace_example.cpp index 69ca40ed..a864d79f 100644 --- a/example/snippets/regex_replace_example.cpp +++ b/example/snippets/regex_replace_example.cpp @@ -86,8 +86,8 @@ int main(int argc, const char** argv) return 0; } -extern const char* pre_expression = "(<)|(>)|(&)|\\r"; -extern const char* pre_format = "(?1<)(?2>)(?3&)"; +const char* pre_expression = "(<)|(>)|(&)|\\r"; +const char* pre_format = "(?1<)(?2>)(?3&)"; const char* expression_text = // preprocessor directives: index 1 diff --git a/example/snippets/regex_split_example_1.cpp b/example/snippets/regex_split_example_1.cpp index 25d2e576..4db5bdd0 100644 --- a/example/snippets/regex_split_example_1.cpp +++ b/example/snippets/regex_split_example_1.cpp @@ -36,11 +36,11 @@ using namespace std; istream& getline(istream& is, std::string& s) { s.erase(); - char c = is.get(); + char c = static_cast(is.get()); while(c != '\n') { s.append(1, c); - c = is.get(); + c = static_cast(is.get()); } return is; } diff --git a/example/snippets/regex_token_iterator_eg_1.cpp b/example/snippets/regex_token_iterator_eg_1.cpp index e12881e8..f1ecb44d 100644 --- a/example/snippets/regex_token_iterator_eg_1.cpp +++ b/example/snippets/regex_token_iterator_eg_1.cpp @@ -29,11 +29,11 @@ using namespace std; istream& getline(istream& is, std::string& s) { s.erase(); - char c = is.get(); + char c = static_cast(is.get()); while(c != '\n') { s.append(1, c); - c = is.get(); + c = static_cast(is.get()); } return is; } diff --git a/example/timer/regex_timer.cpp b/example/timer/regex_timer.cpp index 112b0cb0..ad94e7ff 100644 --- a/example/timer/regex_timer.cpp +++ b/example/timer/regex_timer.cpp @@ -9,6 +9,10 @@ * */ +#ifdef _MSC_VER +#pragma warning(disable: 4996 4127) +#endif + #include #include #include @@ -54,7 +58,7 @@ ostream& operator << (ostream& os, const std::wstring& s) j = s.end(); while(i != j) { - os.put(*i); + os.put(static_cast(*i)); ++i; } return os; @@ -96,15 +100,15 @@ namespace boost{ istream& getline(istream& is, std::string& s) { s.erase(); - char c = is.get(); + char c = static_cast(is.get()); while(c != '\n') { s.append(1, c); - c = is.get(); + c = static_cast(is.get()); } return is; } -#elif defined(__CYGWIN__) +#else istream& getline(istream& is, std::string& s) { std::getline(is, s); @@ -112,8 +116,6 @@ istream& getline(istream& is, std::string& s) s.erase(s.size() - 1); return is; } -#else -using std::getline; #endif } @@ -148,8 +150,8 @@ int main(int argc, char**argv) std::size_t nsubs; boost::timer t; double tim; - bool result; - int iters = 100; + int result = 0; + unsigned iters = 100; double wait_time = (std::min)(t.elapsed_min() * 1000, 1.0); while(true) @@ -202,7 +204,7 @@ int main(int argc, char**argv) ds.erase(ds.begin(), ds.end()); std::copy(s2.begin(), s2.end(), std::back_inserter(ds)); - int i; + unsigned i; iters = 10; tim = 1.1; @@ -217,7 +219,7 @@ int main(int argc, char**argv) // measure time interval for basic_regex do{ - iters *= (tim > 0.001) ? (1.1/tim) : 100; + iters *= static_cast((tim > 0.001) ? (1.1/tim) : 100); t.restart(); for(i =0; i < iters; ++i) { @@ -251,7 +253,7 @@ int main(int argc, char**argv) // cache load: regex_search(ws2, wsm, wex); do{ - iters *= (tim > 0.001) ? (1.1/tim) : 100; + iters *= static_cast((tim > 0.001) ? (1.1/tim) : 100); t.restart(); for(i = 0; i < iters; ++i) { @@ -289,7 +291,7 @@ int main(int argc, char**argv) // cache load: regex_search(ds.begin(), ds.end(), dm, ex); do{ - iters *= (tim > 0.001) ? (1.1/tim) : 100; + iters *= static_cast((tim > 0.001) ? (1.1/tim) : 100); t.restart(); for(i = 0; i < iters; ++i) { @@ -326,7 +328,7 @@ int main(int argc, char**argv) // cache load: regexecA(&r, s2.c_str(), nsubs, matches.get(), 0); do{ - iters *= (tim > 0.001) ? (1.1/tim) : 100; + iters *= static_cast((tim > 0.001) ? (1.1/tim) : 100); t.restart(); for(i = 0; i < iters; ++i) { @@ -357,7 +359,7 @@ int main(int argc, char**argv) ts.erase(); ts.assign(s2.begin() + matches[0].rm_eo, s2.end()); cout << ts; - cout << "\" (matched=" << (matches[0].rm_eo != s2.size()) << ")" << endl << endl; + cout << "\" (matched=" << (matches[0].rm_eo != (int)s2.size()) << ")" << endl << endl; } } regfreeA(&r); diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 886395ec..fa2ea48c 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -752,7 +752,7 @@ template struct functor1 { typedef typename M::char_type char_type; - const char_type* operator()(const M& m) + const char_type* operator()(const M&) { static const char_type c = static_cast(0); return &c; @@ -762,7 +762,7 @@ template struct functor1b { typedef typename M::char_type char_type; - std::vector operator()(const M& m) + std::vector operator()(const M&) { static const std::vector c; return c; diff --git a/include/boost/regex/pending/object_cache.hpp b/include/boost/regex/pending/object_cache.hpp index 2a7e00bc..e1aa191d 100644 --- a/include/boost/regex/pending/object_cache.hpp +++ b/include/boost/regex/pending/object_cache.hpp @@ -73,7 +73,9 @@ boost::shared_ptr object_cache::get(const Key& k, siz // for now just throw, but we should never really get here... // ::boost::throw_exception(std::runtime_error("Error in thread safety code: could not acquire a lock")); +#ifdef BOOST_NO_UNREACHABLE_RETURN_DETECTION return boost::shared_ptr(); +#endif #else return do_get(k, max_cache_size); #endif diff --git a/include/boost/regex/v4/basic_regex_creator.hpp b/include/boost/regex/v4/basic_regex_creator.hpp index 6f005054..d847b96f 100644 --- a/include/boost/regex/v4/basic_regex_creator.hpp +++ b/include/boost/regex/v4/basic_regex_creator.hpp @@ -787,7 +787,7 @@ void basic_regex_creator::fixup_recursions(re_syntax_base* state) // if(0 == (this->flags() & regex_constants::no_except)) { - std::string message = this->m_pdata->m_ptraits->error_string(boost::regex_constants::error_bad_pattern); + std::string message = "Encountered a forward reference to a marked sub-expression that does not exist."; boost::regex_error e(message, boost::regex_constants::error_bad_pattern, 0); e.raise(); } @@ -828,7 +828,7 @@ void basic_regex_creator::fixup_recursions(re_syntax_base* state) // if(0 == (this->flags() & regex_constants::no_except)) { - std::string message = this->m_pdata->m_ptraits->error_string(boost::regex_constants::error_bad_pattern); + std::string message = "Encountered a forward reference to a recursive sub-expression that does not exist."; boost::regex_error e(message, boost::regex_constants::error_bad_pattern, 0); e.raise(); } @@ -893,7 +893,7 @@ void basic_regex_creator::create_startmaps(re_syntax_base* state) // if(0 == (this->flags() & regex_constants::no_except)) { - std::string message = this->m_pdata->m_ptraits->error_string(boost::regex_constants::error_bad_pattern); + std::string message = "Invalid lookbehind assertion encountered in the regular expression."; boost::regex_error e(message, boost::regex_constants::error_bad_pattern, 0); e.raise(); } diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index 0fa35786..44c3e618 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -45,6 +45,11 @@ public: basic_regex_parser(regex_data* data); void parse(const charT* p1, const charT* p2, unsigned flags); void fail(regex_constants::error_type error_code, std::ptrdiff_t position); + void fail(regex_constants::error_type error_code, std::ptrdiff_t position, std::string message, std::ptrdiff_t start_pos); + void fail(regex_constants::error_type error_code, std::ptrdiff_t position, const std::string& message) + { + fail(error_code, position, message, position); + } bool parse_all(); bool parse_basic(); @@ -144,7 +149,7 @@ void basic_regex_parser::parse(const charT* p1, const charT* p2, default: // Ooops, someone has managed to set more than one of the main option flags, // so this must be an error: - fail(regex_constants::error_unknown, 0); + fail(regex_constants::error_unknown, 0, "An invalid combination of regular expression syntax flags was used."); return; } @@ -160,7 +165,7 @@ void basic_regex_parser::parse(const charT* p1, const charT* p2, // have had an unexpected ')' : if(!result) { - fail(regex_constants::error_paren, ::boost::re_detail::distance(m_base, m_position)); + fail(regex_constants::error_paren, ::boost::re_detail::distance(m_base, m_position), "Found a closing ) with no corresponding openening parenthesis."); return; } // if an error has been set then give up now: @@ -173,13 +178,40 @@ void basic_regex_parser::parse(const charT* p1, const charT* p2, template void basic_regex_parser::fail(regex_constants::error_type error_code, std::ptrdiff_t position) +{ + // get the error message: + std::string message = this->m_pdata->m_ptraits->error_string(error_code); + fail(error_code, position, message); +} + +template +void basic_regex_parser::fail(regex_constants::error_type error_code, std::ptrdiff_t position, std::string message, std::ptrdiff_t start_pos) { if(0 == this->m_pdata->m_status) // update the error code if not already set this->m_pdata->m_status = error_code; m_position = m_end; // don't bother parsing anything else - // get the error message: - std::string message = this->m_pdata->m_ptraits->error_string(error_code); - // and raise the exception, this will do nothing if exceptions are disabled: + + // + // Augment error message with the regular expression text: + // + if(start_pos == position) + start_pos = (std::max)(static_cast(0), position - 10); + std::ptrdiff_t end_pos = (std::min)(position + 10, m_end - m_base); + if(error_code != regex_constants::error_empty) + { + if((start_pos != 0) || (end_pos != (m_end - m_base))) + message += " The error occured while parsing the regular expression fragment: '"; + else + message += " The error occured while parsing the regular expression: '"; + if(start_pos != end_pos) + { + message += std::string(m_base + start_pos, m_base + position); + message += ">>>HERE>>>"; + message += std::string(m_base + position, m_base + end_pos); + } + message += "'."; + } + #ifndef BOOST_NO_EXCEPTIONS if(0 == (this->flags() & regex_constants::no_except)) { @@ -287,7 +319,7 @@ bool basic_regex_parser::parse_extended() case regex_constants::syntax_star: if(m_position == this->m_base) { - fail(regex_constants::error_badrepeat, 0); + fail(regex_constants::error_badrepeat, 0, "The repeat operator \"*\" cannot start a regular expression."); return false; } ++m_position; @@ -295,7 +327,7 @@ bool basic_regex_parser::parse_extended() case regex_constants::syntax_question: if(m_position == this->m_base) { - fail(regex_constants::error_badrepeat, 0); + fail(regex_constants::error_badrepeat, 0, "The repeat operator \"?\" cannot start a regular expression."); return false; } ++m_position; @@ -303,7 +335,7 @@ bool basic_regex_parser::parse_extended() case regex_constants::syntax_plus: if(m_position == this->m_base) { - fail(regex_constants::error_badrepeat, 0); + fail(regex_constants::error_badrepeat, 0, "The repeat operator \"+\" cannot start a regular expression."); return false; } ++m_position; @@ -312,7 +344,7 @@ bool basic_regex_parser::parse_extended() ++m_position; return parse_repeat_range(false); case regex_constants::syntax_close_brace: - fail(regex_constants::error_brace, this->m_position - this->m_end); + fail(regex_constants::error_brace, this->m_position - this->m_base, "Found a closing repetition operator } with no corresponding {."); return false; case regex_constants::syntax_or: return parse_alt(); @@ -517,7 +549,7 @@ bool basic_regex_parser::parse_basic_escape() case regex_constants::syntax_close_brace: if(this->flags() & regbase::no_intervals) return parse_literal(); - fail(regex_constants::error_brace, this->m_position - this->m_base); + fail(regex_constants::error_brace, this->m_position - this->m_base, "Found a closing repetition operator } with no corresponding {."); return false; case regex_constants::syntax_or: if(this->flags() & regbase::bk_vbar) @@ -612,7 +644,7 @@ bool basic_regex_parser::parse_basic_escape() case 'c': case 'C': // not supported yet: - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, "The \\c and \\C escape sequences are not supported by POSIX basic regular expressions: try the Perl syntax instead."); return false; default: break; @@ -710,7 +742,7 @@ escape_type_class_jump: char_class_type m; if(m_position == m_end) { - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, "Incomplete property escape found."); return false; } // maybe have \p{ddd} @@ -722,7 +754,7 @@ escape_type_class_jump: ++m_position; if(m_position == m_end) { - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, "Closing } missing from property escape sequence."); return false; } m = this->m_traits.lookup_classname(++base, m_position++); @@ -745,7 +777,7 @@ escape_type_class_jump: } return true; } - fail(regex_constants::error_ctype, m_position - m_base); + fail(regex_constants::error_ctype, m_position - m_base, "Escape sequence was neither a valid property nor a valid character class name."); return false; } case regex_constants::escape_type_reset_start_mark: @@ -781,9 +813,10 @@ escape_type_class_jump: { bool have_brace = false; bool negative = false; + static const char* incomplete_message = "Incomplete \\g escape found."; if(++m_position == m_end) { - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, incomplete_message); return false; } // maybe have \g{ddd} @@ -791,7 +824,7 @@ escape_type_class_jump: { if(++m_position == m_end) { - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, incomplete_message); return false; } have_brace = true; @@ -799,7 +832,7 @@ escape_type_class_jump: negative = (*m_position == static_cast('-')); if((negative) && (++m_position == m_end)) { - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, incomplete_message); return false; } const charT* pc = m_position; @@ -824,7 +857,7 @@ escape_type_class_jump: } else { - fail(regex_constants::error_backref, m_position - m_end); + fail(regex_constants::error_backref, m_position - m_base); return false; } m_position = pc; @@ -832,7 +865,7 @@ escape_type_class_jump: { if((m_position == m_end) || (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_brace)) { - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, incomplete_message); return false; } ++m_position; @@ -899,7 +932,7 @@ bool basic_regex_parser::parse_repeat(std::size_t low, std::size_ } if(0 == this->m_last_state) { - fail(regex_constants::error_badrepeat, ::boost::re_detail::distance(m_base, m_position)); + fail(regex_constants::error_badrepeat, ::boost::re_detail::distance(m_base, m_position), "Nothing to repeat."); return false; } if(this->m_last_state->type == syntax_element_endmark) @@ -986,6 +1019,7 @@ bool basic_regex_parser::parse_repeat(std::size_t low, std::size_ template bool basic_regex_parser::parse_repeat_range(bool isbasic) { + static const char* incomplete_message = "Missing } in quantified repetition."; // // parse a repeat-range: // @@ -997,7 +1031,7 @@ bool basic_regex_parser::parse_repeat_range(bool isbasic) // fail if at end: if(this->m_position == this->m_end) { - fail(regex_constants::error_brace, this->m_position - this->m_base); + fail(regex_constants::error_brace, this->m_position - this->m_base, incomplete_message); return false; } // get min: @@ -1012,7 +1046,7 @@ bool basic_regex_parser::parse_repeat_range(bool isbasic) } else if(this->m_position == this->m_end) { - fail(regex_constants::error_brace, this->m_position - this->m_base); + fail(regex_constants::error_brace, this->m_position - this->m_base, incomplete_message); return false; } min = v; @@ -1026,7 +1060,7 @@ bool basic_regex_parser::parse_repeat_range(bool isbasic) ++m_position; if(this->m_position == this->m_end) { - fail(regex_constants::error_brace, this->m_position - this->m_base); + fail(regex_constants::error_brace, this->m_position - this->m_base, incomplete_message); return false; } // get the value if any: @@ -1044,7 +1078,7 @@ bool basic_regex_parser::parse_repeat_range(bool isbasic) // OK now check trailing }: if(this->m_position == this->m_end) { - fail(regex_constants::error_brace, this->m_position - this->m_base); + fail(regex_constants::error_brace, this->m_position - this->m_base, incomplete_message); return false; } if(isbasic) @@ -1054,13 +1088,13 @@ bool basic_regex_parser::parse_repeat_range(bool isbasic) ++m_position; if(this->m_position == this->m_end) { - fail(regex_constants::error_brace, this->m_position - this->m_base); + fail(regex_constants::error_brace, this->m_position - this->m_base, incomplete_message); return false; } } else { - fail(regex_constants::error_badbrace, this->m_position - this->m_base); + fail(regex_constants::error_brace, this->m_position - this->m_base, incomplete_message); return false; } } @@ -1068,7 +1102,7 @@ bool basic_regex_parser::parse_repeat_range(bool isbasic) ++m_position; else { - fail(regex_constants::error_badbrace, this->m_position - this->m_base); + fail(regex_constants::error_brace, this->m_position - this->m_base, incomplete_message); return false; } // @@ -1076,7 +1110,11 @@ bool basic_regex_parser::parse_repeat_range(bool isbasic) // if(min > max) { - fail(regex_constants::error_badbrace, this->m_position - this->m_base); + // Backtrack to error location: + m_position -= 2; + while(this->m_traits.isctype(*m_position, this->m_word_mask)) --m_position; + ++m_position; + fail(regex_constants::error_badbrace, m_position - m_base); return false; } return parse_repeat(min, max); @@ -1099,7 +1137,7 @@ bool basic_regex_parser::parse_alt() ) ) { - fail(regex_constants::error_empty, this->m_position - this->m_base); + fail(regex_constants::error_empty, this->m_position - this->m_base, "A regular expression can start with the alternation operator |."); return false; } // @@ -1151,10 +1189,11 @@ bool basic_regex_parser::parse_alt() template bool basic_regex_parser::parse_set() { + static const char* incomplete_message = "Character set declaration starting with [ terminated prematurely - either no ] was found or the set had no content."; ++m_position; if(m_position == m_end) { - fail(regex_constants::error_brack, m_position - m_base); + fail(regex_constants::error_brack, m_position - m_base, incomplete_message); return false; } basic_char_set char_set; @@ -1187,7 +1226,7 @@ bool basic_regex_parser::parse_set() ++m_position; if(0 == this->append_set(char_set)) { - fail(regex_constants::error_range, m_position - m_base); + fail(regex_constants::error_ctype, m_position - m_base); return false; } } @@ -1242,6 +1281,7 @@ bool basic_regex_parser::parse_set() template bool basic_regex_parser::parse_inner_set(basic_char_set& char_set) { + static const char* incomplete_message = "Character class declaration starting with [ terminated prematurely - either no ] was found or the set had no content."; // // we have either a character class [:name:] // a collating element [.name.] @@ -1249,7 +1289,7 @@ bool basic_regex_parser::parse_inner_set(basic_char_setm_traits.syntax_type(*m_position)) @@ -1274,14 +1314,14 @@ bool basic_regex_parser::parse_inner_set(basic_char_set::parse_inner_set(basic_char_setm_traits.syntax_type(*m_position) != regex_constants::syntax_close_set)) { - fail(regex_constants::error_brack, m_position - m_base); + fail(regex_constants::error_brack, m_position - m_base, incomplete_message); return false; } // @@ -1351,14 +1391,14 @@ bool basic_regex_parser::parse_inner_set(basic_char_set::parse_inner_set(basic_char_setm_traits.syntax_type(*m_position) != regex_constants::syntax_close_set)) { - fail(regex_constants::error_brack, m_position - m_base); + fail(regex_constants::error_brack, m_position - m_base, incomplete_message); return false; } string_type m = this->m_traits.lookup_collatename(name_first, name_last); @@ -1563,7 +1603,7 @@ charT basic_regex_parser::unescape_character() charT result(0); if(m_position == m_end) { - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, "Escape sequence terminated prematurely."); return false; } switch(this->m_traits.escape_syntax_type(*m_position)) @@ -1596,24 +1636,22 @@ charT basic_regex_parser::unescape_character() ++m_position; if(m_position == m_end) { - fail(regex_constants::error_escape, m_position - m_base); + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; + fail(regex_constants::error_escape, m_position - m_base, "ASCII escape sequence terminated prematurely."); return result; } - /* - if((*m_position < charT('@')) - || (*m_position > charT(125)) ) - { - fail(regex_constants::error_escape, m_position - m_base); - return result; - } - */ result = static_cast(*m_position % 32); break; case regex_constants::escape_type_hex: ++m_position; if(m_position == m_end) { - fail(regex_constants::error_escape, m_position - m_base); + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; + fail(regex_constants::error_escape, m_position - m_base, "Hexadecimal escape sequence terminated prematurely."); return result; } // maybe have \x{ddd} @@ -1622,7 +1660,10 @@ charT basic_regex_parser::unescape_character() ++m_position; if(m_position == m_end) { - fail(regex_constants::error_escape, m_position - m_base); + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; + fail(regex_constants::error_escape, m_position - m_base, "Missing } in hexadecimal escape sequence."); return result; } int i = this->m_traits.toi(m_position, m_end, 16); @@ -1631,7 +1672,10 @@ charT basic_regex_parser::unescape_character() || ((std::numeric_limits::is_specialized) && (i > (int)(std::numeric_limits::max)())) || (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_brace)) { - fail(regex_constants::error_badbrace, m_position - m_base); + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; + fail(regex_constants::error_badbrace, m_position - m_base, "Hexadecimal escape sequence was invalid."); return result; } ++m_position; @@ -1644,7 +1688,10 @@ charT basic_regex_parser::unescape_character() if((i < 0) || !valid_value(charT(0), i)) { - fail(regex_constants::error_escape, m_position - m_base); + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; + fail(regex_constants::error_escape, m_position - m_base, "Escape sequence did not encode a valid character."); return result; } result = charT(i); @@ -1659,14 +1706,20 @@ charT basic_regex_parser::unescape_character() int val = this->m_traits.toi(bp, bp + 1, 8); if(val != 0) { + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; // Oops not an octal escape after all: - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, "Invalid octal escape sequence."); return result; } val = this->m_traits.toi(m_position, m_position + len, 8); if(val < 0) { - fail(regex_constants::error_escape, m_position - m_base); + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; + fail(regex_constants::error_escape, m_position - m_base, "Octal escape sequence is invalid."); return result; } return static_cast(val); @@ -1676,6 +1729,9 @@ charT basic_regex_parser::unescape_character() ++m_position; if(m_position == m_end) { + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; fail(regex_constants::error_escape, m_position - m_base); return false; } @@ -1688,12 +1744,18 @@ charT basic_regex_parser::unescape_character() ++m_position; if(m_position == m_end) { + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; fail(regex_constants::error_escape, m_position - m_base); return false; } string_type s = this->m_traits.lookup_collatename(++base, m_position++); if(s.empty()) { + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; fail(regex_constants::error_collate, m_position - m_base); return false; } @@ -1703,6 +1765,9 @@ charT basic_regex_parser::unescape_character() } } // fall through is a failure: + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; fail(regex_constants::error_escape, m_position - m_base); return false; } @@ -1738,7 +1803,10 @@ bool basic_regex_parser::parse_backref() } else { - fail(regex_constants::error_backref, m_position - m_end); + // Rewind to start of escape: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; + fail(regex_constants::error_backref, m_position - m_base); return false; } return true; @@ -1770,7 +1838,7 @@ bool basic_regex_parser::parse_QE() } if(++m_position == m_end) // skip the escape { - fail(regex_constants::error_escape, m_position - m_base); + fail(regex_constants::error_escape, m_position - m_base, "Unterminated \\Q...\\E sequence."); return false; } // check to see if it's a \E: @@ -1801,7 +1869,10 @@ bool basic_regex_parser::parse_perl_extension() { if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } // @@ -1860,7 +1931,10 @@ bool basic_regex_parser::parse_perl_extension() v = this->m_traits.toi(m_position, m_end, 10); if((v < 0) || (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark)) { - fail(regex_constants::error_backref, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base, "The recursive sub-expression refers to an invalid marking group, or is unterminated."); return false; } insert_recursion: @@ -1879,7 +1953,10 @@ insert_recursion: v = this->m_traits.toi(m_position, m_end, 10); if((v <= 0) || (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark)) { - fail(regex_constants::error_backref, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base, "An invalid or unterminated recursive sub-expression."); return false; } v += m_mark_count; @@ -1899,7 +1976,10 @@ insert_recursion: v = m_mark_count + 1 - v; if(v <= 0) { - fail(regex_constants::error_backref, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base, "An invalid or unterminated recursive sub-expression."); return false; } goto insert_recursion; @@ -1922,7 +2002,10 @@ insert_recursion: // a lookbehind assertion: if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } regex_constants::syntax_type t = this->m_traits.syntax_type(*m_position); @@ -1960,7 +2043,10 @@ insert_recursion: pb->index = markid = -4; if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } int v = this->m_traits.toi(m_position, m_end, 10); @@ -1968,7 +2054,10 @@ insert_recursion: { if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } if(*m_position == charT('&')) @@ -1978,7 +2067,10 @@ insert_recursion: ++m_position; if(m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } v = -static_cast(hash_value_from_capture_name(base, m_position)); @@ -1991,12 +2083,18 @@ insert_recursion: br->index = v < 0 ? (v - 1) : 0; if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } } @@ -2007,7 +2105,10 @@ insert_recursion: ++m_position; if(m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } v = static_cast(hash_value_from_capture_name(base, m_position)); @@ -2015,17 +2116,26 @@ insert_recursion: br->index = v; if(((*m_position != charT('>')) && (*m_position != charT('\''))) || (++m_position == m_end)) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base, "Unterminated named capture."); return false; } if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } } @@ -2036,19 +2146,28 @@ insert_recursion: ++m_position, ++def; if((m_position == m_end) || *def) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } re_brace* br = static_cast(this->append_state(syntax_element_assert_backref, sizeof(re_brace))); br->index = 9999; // special magic value! if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } } @@ -2058,12 +2177,18 @@ insert_recursion: br->index = v; if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } } @@ -2072,25 +2197,37 @@ insert_recursion: // verify that we have a lookahead or lookbehind assert: if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_question) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } if(this->m_traits.syntax_type(*m_position) == regex_constants::escape_type_left_word) { if(++m_position == m_end) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } if((this->m_traits.syntax_type(*m_position) != regex_constants::syntax_equal) && (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_not)) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } m_position -= 3; @@ -2100,7 +2237,10 @@ insert_recursion: if((this->m_traits.syntax_type(*m_position) != regex_constants::syntax_equal) && (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_not)) { - fail(regex_constants::error_paren, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } m_position -= 2; @@ -2109,7 +2249,10 @@ insert_recursion: break; } case regex_constants::syntax_close_mark: - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; case regex_constants::escape_type_end_buffer: { @@ -2131,14 +2274,20 @@ named_capture_jump: const charT* base = ++m_position; if(m_position == m_end) { - fail(regex_constants::error_paren, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } while((m_position != m_end) && (*m_position != name_delim)) ++m_position; if(m_position == m_end) { - fail(regex_constants::error_paren, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } this->m_pdata->set_name(base, m_position, markid); @@ -2152,7 +2301,10 @@ named_capture_jump: v = 0; if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark) { - fail(regex_constants::error_backref, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } goto insert_recursion; @@ -2165,7 +2317,10 @@ named_capture_jump: ++m_position; if(m_position == m_end) { - fail(regex_constants::error_backref, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } v = static_cast(hash_value_from_capture_name(base, m_position)); @@ -2176,7 +2331,10 @@ named_capture_jump: ++m_position; if(m_position == m_end) { - fail(regex_constants::error_backref, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } if(*m_position == charT('>')) @@ -2187,7 +2345,10 @@ named_capture_jump: ++m_position; if(m_position == m_end) { - fail(regex_constants::error_backref, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } v = static_cast(hash_value_from_capture_name(base, m_position)); @@ -2200,7 +2361,13 @@ named_capture_jump: option_group_jump: regex_constants::syntax_option_type opts = parse_options(); if(m_position == m_end) + { + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; + } // make a note of whether we have a case change: m_has_case_change = ((opts & regbase::icase) != (this->flags() & regbase::icase)); pb->index = markid = 0; @@ -2219,7 +2386,10 @@ option_group_jump: } else { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base); return false; } @@ -2241,12 +2411,21 @@ option_group_jump: // Unwind alternatives: // if(0 == unwind_alts(last_paren_start)) + { + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base, "Invalid alternation operators within (?...) block."); return false; + } // // we either have a ')' or we have run out of characters prematurely: // if(m_position == m_end) { + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; this->fail(regex_constants::error_paren, ::boost::re_detail::distance(m_base, m_end)); return false; } @@ -2277,7 +2456,10 @@ option_group_jump: if(this->m_last_state == jmp) { // Oops... we didn't have anything inside the assertion: - fail(regex_constants::error_empty, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_perl_extension, m_position - m_base, "Invalid or empty zero width assertion."); return false; } } @@ -2297,7 +2479,10 @@ option_group_jump: else if(this->getaddress(static_cast(b)->alt.i, b)->type == syntax_element_alt) { // Can't have seen more than one alternative: - fail(regex_constants::error_bad_pattern, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_bad_pattern, m_position - m_base, "More than one alternation operator | was encountered inside a conditional expression."); return false; } else @@ -2306,7 +2491,10 @@ option_group_jump: b = this->getaddress(b->next.i, b); if((b->type == syntax_element_assert_backref) && (static_cast(b)->index == 9999)) { - fail(regex_constants::error_bad_pattern, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_bad_pattern, m_position - m_base, "Alternation operators are not allowed inside a DEFINE block."); return false; } } @@ -2316,7 +2504,10 @@ option_group_jump: if((b->type != syntax_element_assert_backref) && (b->type != syntax_element_startmark)) { - fail(regex_constants::error_badrepeat, m_position - m_base); + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; + fail(regex_constants::error_badrepeat, m_position - m_base, "A repetition operator cannot be applied to a zero-width assertion."); return false; } } @@ -2371,6 +2562,9 @@ bool basic_regex_parser::add_emacs_code(bool negate) // if(++m_position == m_end) { + // Rewind to start of sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_escape) --m_position; fail(regex_constants::error_escape, m_position - m_base); return false; } @@ -2471,6 +2665,9 @@ regex_constants::syntax_option_type basic_regex_parser::parse_opt } if(++m_position == m_end) { + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; fail(regex_constants::error_paren, m_position - m_base); return false; } @@ -2481,6 +2678,9 @@ regex_constants::syntax_option_type basic_regex_parser::parse_opt { if(++m_position == m_end) { + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; fail(regex_constants::error_paren, m_position - m_base); return false; } @@ -2507,6 +2707,9 @@ regex_constants::syntax_option_type basic_regex_parser::parse_opt } if(++m_position == m_end) { + // Rewind to start of (? sequence: + --m_position; + while(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_open_mark) --m_position; fail(regex_constants::error_paren, m_position - m_base); return false; } @@ -2533,7 +2736,7 @@ bool basic_regex_parser::unwind_alts(std::ptrdiff_t last_paren_st ) ) { - fail(regex_constants::error_empty, this->m_position - this->m_base); + fail(regex_constants::error_empty, this->m_position - this->m_base, "Can't terminate a sub-expression with an alternation operator |."); return false; } // diff --git a/include/boost/regex/v4/cregex.hpp b/include/boost/regex/v4/cregex.hpp index cafe396c..7b3df1e5 100644 --- a/include/boost/regex/v4/cregex.hpp +++ b/include/boost/regex/v4/cregex.hpp @@ -124,11 +124,11 @@ typedef enum{ REG_STARTEND = 00004 } reg_exec_flags; -// -// POSIX error codes: -// +/* + * POSIX error codes: + */ typedef unsigned reg_error_t; -typedef reg_error_t reg_errcode_t; // backwards compatibility +typedef reg_error_t reg_errcode_t; /* backwards compatibility */ static const reg_error_t REG_NOERROR = 0; /* Success. */ static const reg_error_t REG_NOMATCH = 1; /* Didn't find a match (for regexec). */ @@ -154,8 +154,9 @@ static const reg_error_t REG_EMPTY = 17; /* empty expression */ static const reg_error_t REG_E_MEMORY = 15; /* = REG_ESIZE : out of memory */ static const reg_error_t REG_ECOMPLEXITY = 18; /* complexity too high */ static const reg_error_t REG_ESTACK = 19; /* out of stack space */ -static const reg_error_t REG_E_UNKNOWN = 20; /* unknown error */ -static const reg_error_t REG_ENOSYS = 20; /* = REG_E_UNKNOWN : Reserved. */ +static const reg_error_t REG_E_PERL = 20; /* Perl (?...) error */ +static const reg_error_t REG_E_UNKNOWN = 21; /* unknown error */ +static const reg_error_t REG_ENOSYS = 21; /* = REG_E_UNKNOWN : Reserved. */ BOOST_REGEX_DECL int BOOST_REGEX_CCALL regcompA(regex_tA*, const char*, int); BOOST_REGEX_DECL regsize_t BOOST_REGEX_CCALL regerrorA(int, const regex_tA*, char*, regsize_t); @@ -195,14 +196,14 @@ BOOST_REGEX_DECL void BOOST_REGEX_CCALL regfreeW(regex_tW*); #endif #ifdef __cplusplus -} // extern "C" -} // namespace +} /* extern "C" */ +} /* namespace */ #endif -// -// C++ high level wrapper goes here: -// #if defined(__cplusplus) +/* + * C++ high level wrapper goes here: + */ #include #include namespace boost{ @@ -228,7 +229,7 @@ struct pred2; struct pred3; struct pred4; -} // namespace re_detail +} /* namespace re_detail */ #if (defined(BOOST_MSVC) || defined(__BORLANDC__)) && !defined(BOOST_DISABLE_WIN32) typedef bool (__cdecl *GrepCallback)(const RegEx& expression); @@ -257,9 +258,9 @@ public: unsigned int SetExpression(const std::string& s, bool icase = false){ return SetExpression(s.c_str(), icase); } std::string Expression()const; unsigned int error_code()const; - // - // now matching operators: - // + /* + * now matching operators: + */ bool Match(const char* p, match_flag_type flags = match_default); bool Match(const std::string& s, match_flag_type flags = match_default) { return Match(s.c_str(), flags); } bool Search(const char* p, match_flag_type flags = match_default); @@ -283,9 +284,9 @@ public: bool copy = true, match_flag_type flags = match_default); std::size_t Split(std::vector& v, std::string& s, match_flag_type flags = match_default, unsigned max_count = ~0); - // - // now operators for returning what matched in more detail: - // + /* + * now operators for returning what matched in more detail: + */ std::size_t Position(int i = 0)const; std::size_t Length(int i = 0)const; bool Matched(int i = 0)const; @@ -312,11 +313,11 @@ public: #pragma warning(pop) #endif -} // namespace boost +} /* namespace boost */ -#endif +#endif /* __cplusplus */ -#endif // include guard +#endif /* include guard */ diff --git a/include/boost/regex/v4/error_type.hpp b/include/boost/regex/v4/error_type.hpp index b6633a00..afcc71e3 100644 --- a/include/boost/regex/v4/error_type.hpp +++ b/include/boost/regex/v4/error_type.hpp @@ -28,8 +28,8 @@ namespace regex_constants{ enum error_type{ - error_ok = 0, // not used - error_no_match = 1, // not used + error_ok = 0, /* not used */ + error_no_match = 1, /* not used */ error_bad_pattern = 2, error_collate = 3, error_ctype = 4, @@ -42,17 +42,18 @@ enum error_type{ error_range = 11, error_space = 12, error_badrepeat = 13, - error_end = 14, // not used + error_end = 14, /* not used */ error_size = 15, - error_right_paren = 16, // not used + error_right_paren = 16, /* not used */ error_empty = 17, error_complexity = 18, error_stack = 19, - error_unknown = 20 + error_perl_extension = 20, + error_unknown = 21 }; } } -#endif // __cplusplus +#endif /* __cplusplus */ #endif diff --git a/include/boost/regex/v4/match_flags.hpp b/include/boost/regex/v4/match_flags.hpp index 9585aca8..26bde9a5 100644 --- a/include/boost/regex/v4/match_flags.hpp +++ b/include/boost/regex/v4/match_flags.hpp @@ -31,43 +31,43 @@ namespace boost{ typedef enum _match_flags { match_default = 0, - match_not_bol = 1, // first is not start of line - match_not_eol = match_not_bol << 1, // last is not end of line - match_not_bob = match_not_eol << 1, // first is not start of buffer - match_not_eob = match_not_bob << 1, // last is not end of buffer - match_not_bow = match_not_eob << 1, // first is not start of word - match_not_eow = match_not_bow << 1, // last is not end of word - match_not_dot_newline = match_not_eow << 1, // \n is not matched by '.' - match_not_dot_null = match_not_dot_newline << 1, // '\0' is not matched by '.' - match_prev_avail = match_not_dot_null << 1, // *--first is a valid expression - match_init = match_prev_avail << 1, // internal use - match_any = match_init << 1, // don't care what we match - match_not_null = match_any << 1, // string can't be null - match_continuous = match_not_null << 1, // each grep match must continue from - // uninterupted from the previous one - match_partial = match_continuous << 1, // find partial matches + match_not_bol = 1, /* first is not start of line */ + match_not_eol = match_not_bol << 1, /* last is not end of line */ + match_not_bob = match_not_eol << 1, /* first is not start of buffer */ + match_not_eob = match_not_bob << 1, /* last is not end of buffer */ + match_not_bow = match_not_eob << 1, /* first is not start of word */ + match_not_eow = match_not_bow << 1, /* last is not end of word */ + match_not_dot_newline = match_not_eow << 1, /* \n is not matched by '.' */ + match_not_dot_null = match_not_dot_newline << 1, /* '\0' is not matched by '.' */ + match_prev_avail = match_not_dot_null << 1, /* *--first is a valid expression */ + match_init = match_prev_avail << 1, /* internal use */ + match_any = match_init << 1, /* don't care what we match */ + match_not_null = match_any << 1, /* string can't be null */ + match_continuous = match_not_null << 1, /* each grep match must continue from */ + /* uninterupted from the previous one */ + match_partial = match_continuous << 1, /* find partial matches */ - match_stop = match_partial << 1, // stop after first match (grep) V3 only - match_not_initial_null = match_stop, // don't match initial null, V4 only - match_all = match_stop << 1, // must find the whole of input even if match_any is set - match_perl = match_all << 1, // Use perl matching rules - match_posix = match_perl << 1, // Use POSIX matching rules - match_nosubs = match_posix << 1, // don't trap marked subs - match_extra = match_nosubs << 1, // include full capture information for repeated captures - match_single_line = match_extra << 1, // treat text as single line and ignor any \n's when matching ^ and $. - match_unused1 = match_single_line << 1, // unused - match_unused2 = match_unused1 << 1, // unused - match_unused3 = match_unused2 << 1, // unused + match_stop = match_partial << 1, /* stop after first match (grep) V3 only */ + match_not_initial_null = match_stop, /* don't match initial null, V4 only */ + match_all = match_stop << 1, /* must find the whole of input even if match_any is set */ + match_perl = match_all << 1, /* Use perl matching rules */ + match_posix = match_perl << 1, /* Use POSIX matching rules */ + match_nosubs = match_posix << 1, /* don't trap marked subs */ + match_extra = match_nosubs << 1, /* include full capture information for repeated captures */ + match_single_line = match_extra << 1, /* treat text as single line and ignor any \n's when matching ^ and $. */ + match_unused1 = match_single_line << 1, /* unused */ + match_unused2 = match_unused1 << 1, /* unused */ + match_unused3 = match_unused2 << 1, /* unused */ match_max = match_unused3, - format_perl = 0, // perl style replacement - format_default = 0, // ditto. - format_sed = match_max << 1, // sed style replacement. - format_all = format_sed << 1, // enable all extentions to sytax. - format_no_copy = format_all << 1, // don't copy non-matching segments. - format_first_only = format_no_copy << 1, // Only replace first occurance. - format_is_if = format_first_only << 1, // internal use only. - format_literal = format_is_if << 1 // treat string as a literal + format_perl = 0, /* perl style replacement */ + format_default = 0, /* ditto. */ + format_sed = match_max << 1, /* sed style replacement. */ + format_all = format_sed << 1, /* enable all extentions to sytax. */ + format_no_copy = format_all << 1, /* don't copy non-matching segments. */ + format_first_only = format_no_copy << 1, /* Only replace first occurance. */ + format_is_if = format_first_only << 1, /* internal use only. */ + format_literal = format_is_if << 1 /* treat string as a literal */ } match_flags; @@ -96,10 +96,10 @@ inline match_flags& operator^=(match_flags& m1, match_flags m2) #endif #ifdef __cplusplus -} // namespace regex_constants -// -// import names into boost for backwards compatiblity: -// +} /* namespace regex_constants */ +/* + * import names into boost for backwards compatiblity: + */ using regex_constants::match_flag_type; using regex_constants::match_default; using regex_constants::match_not_bol; @@ -111,28 +111,28 @@ using regex_constants::match_not_eow; using regex_constants::match_not_dot_newline; using regex_constants::match_not_dot_null; using regex_constants::match_prev_avail; -//using regex_constants::match_init; +/* using regex_constants::match_init; */ using regex_constants::match_any; using regex_constants::match_not_null; using regex_constants::match_continuous; using regex_constants::match_partial; -//using regex_constants::match_stop; +/*using regex_constants::match_stop; */ using regex_constants::match_all; using regex_constants::match_perl; using regex_constants::match_posix; using regex_constants::match_nosubs; using regex_constants::match_extra; using regex_constants::match_single_line; -//using regex_constants::match_max; +/*using regex_constants::match_max; */ using regex_constants::format_all; using regex_constants::format_sed; using regex_constants::format_perl; using regex_constants::format_default; using regex_constants::format_no_copy; using regex_constants::format_first_only; -//using regex_constants::format_is_if; +/*using regex_constants::format_is_if;*/ -} // namespace boost -#endif // __cplusplus -#endif // include guard +} /* namespace boost */ +#endif /* __cplusplus */ +#endif /* include guard */ diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index 2ce7ebe0..343afc02 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -188,7 +188,7 @@ bool perl_matcher::match_all_states() if(!(this->*proc)()) { if(state_count > max_state_count) - raise_error(traits_inst, regex_constants::error_space); + raise_error(traits_inst, regex_constants::error_complexity); if((m_match_flags & match_partial) && (position == last) && (position != search_base)) m_has_partial_match = true; bool successful_unwind = unwind(false); @@ -219,7 +219,7 @@ void perl_matcher::extend_stack() m_backup_state = block; } else - raise_error(traits_inst, regex_constants::error_size); + raise_error(traits_inst, regex_constants::error_stack); } template diff --git a/include/boost/regex/v4/perl_matcher_recursive.hpp b/include/boost/regex/v4/perl_matcher_recursive.hpp index 48f08b7b..d0de8025 100644 --- a/include/boost/regex/v4/perl_matcher_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_recursive.hpp @@ -99,7 +99,7 @@ bool perl_matcher::match_all_states() }; if(state_count > max_state_count) - raise_error(traits_inst, regex_constants::error_space); + raise_error(traits_inst, regex_constants::error_complexity); while(pstate) { matcher_proc_type proc = s_match_vtable[pstate->type]; diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index 52e0f6b1..bd88d218 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -831,7 +831,7 @@ OutputIterator regex_format_imp(OutputIterator out, #ifndef BOOST_NO_SFINAE -BOOST_MPL_HAS_XXX_TRAIT_DEF(const_iterator); +BOOST_MPL_HAS_XXX_TRAIT_DEF(const_iterator) struct any_type { any_type(...); }; typedef char no_type; @@ -972,6 +972,8 @@ struct format_functor3 } private: Base func; + format_functor3(const format_functor3&); + format_functor3& operator=(const format_functor3&); }; template @@ -990,6 +992,8 @@ struct format_functor2 } private: Base func; + format_functor2(const format_functor2&); + format_functor2& operator=(const format_functor2&); }; template @@ -1025,6 +1029,8 @@ struct format_functor1 } private: Base func; + format_functor1(const format_functor1&); + format_functor1& operator=(const format_functor1&); }; template @@ -1042,6 +1048,8 @@ struct format_functor_c_string } private: const charT* func; + format_functor_c_string(const format_functor_c_string&); + format_functor_c_string& operator=(const format_functor_c_string&); }; template @@ -1057,6 +1065,8 @@ struct format_functor_container } private: const Container& func; + format_functor_container(const format_functor_container&); + format_functor_container& operator=(const format_functor_container&); }; template > diff --git a/include/boost/regex/v4/regex_traits_defaults.hpp b/include/boost/regex/v4/regex_traits_defaults.hpp index 5b2c6bc3..a8361083 100644 --- a/include/boost/regex/v4/regex_traits_defaults.hpp +++ b/include/boost/regex/v4/regex_traits_defaults.hpp @@ -322,7 +322,7 @@ inline const charT* get_escape_R_string() { #ifdef BOOST_MSVC # pragma warning(push) -# pragma warning(disable:4309) +# pragma warning(disable:4309 4245) #endif static const charT e1[] = { '(', '?', '>', '\x0D', '\x0A', '?', '|', '[', '\x0A', '\x0B', '\x0C', '\x85', '\\', 'x', '{', '2', '0', '2', '8', '}', diff --git a/src/cregex.cpp b/src/cregex.cpp index fb12373a..f67d3718 100644 --- a/src/cregex.cpp +++ b/src/cregex.cpp @@ -563,11 +563,7 @@ std::string RegEx::What(int i)const return result; } -#ifdef BOOST_HAS_LONG_LONG -const std::size_t RegEx::npos = static_cast(~0ULL); -#else -const std::size_t RegEx::npos = static_cast(~0UL); -#endif +const std::size_t RegEx::npos = ~static_cast(0); } // namespace boost diff --git a/src/posix_api.cpp b/src/posix_api.cpp index 1564cedb..37ed4221 100644 --- a/src/posix_api.cpp +++ b/src/posix_api.cpp @@ -58,6 +58,7 @@ const char* names[] = { "REG_EMPTY", "REG_ECOMPLEXITY", "REG_ESTACK", + "REG_E_PERL", "REG_E_UNKNOWN", }; } // namespace diff --git a/src/regex_traits_defaults.cpp b/src/regex_traits_defaults.cpp index c9596a3d..31b79184 100644 --- a/src/regex_traits_defaults.cpp +++ b/src/regex_traits_defaults.cpp @@ -111,30 +111,31 @@ BOOST_REGEX_DECL const char* BOOST_REGEX_CALL get_default_syntax(regex_constants BOOST_REGEX_DECL const char* BOOST_REGEX_CALL get_default_error_string(regex_constants::error_type n) { static const char* const s_default_error_messages[] = { - "Success", /* REG_NOERROR */ - "No match", /* REG_NOMATCH */ - "Invalid regular expression", /* REG_BADPAT */ - "Invalid collation character", /* REG_ECOLLATE */ - "Invalid character class name", /* REG_ECTYPE */ - "Invalid or trailing backslash", /* REG_EESCAPE */ - "Invalid back reference", /* REG_ESUBREG */ - "Unmatched [ or [^", /* REG_EBRACK */ - "Unmatched ( or \\(", /* REG_EPAREN */ - "Unmatched { or \\{", /* REG_EBRACE */ - "Invalid content of repeat range", /* REG_BADBR */ - "Invalid range end", /* REG_ERANGE */ - "Memory exhausted", /* REG_ESPACE */ - "Invalid preceding regular expression", /* REG_BADRPT */ - "Premature end of regular expression", /* REG_EEND */ - "Regular expression too big", /* REG_ESIZE */ - "Unmatched ) or \\)", /* REG_ERPAREN */ - "Empty expression", /* REG_EMPTY */ - "Complexity requirements exceeded", /* REG_ECOMPLEXITY */ - "Out of stack space", /* REG_ESTACK */ - "Unknown error", /* REG_E_UNKNOWN */ - "", - "", - "", + "Success", /* REG_NOERROR 0 error_ok */ + "No match", /* REG_NOMATCH 1 error_no_match */ + "Invalid regular expression.", /* REG_BADPAT 2 error_bad_pattern */ + "Invalid collation character.", /* REG_ECOLLATE 3 error_collate */ + "Invalid character class name, collating name, or character range.", /* REG_ECTYPE 4 error_ctype */ + "Invalid or unterminated escape sequence.", /* REG_EESCAPE 5 error_escape */ + "Invalid back reference: specified capturing group does not exist.", /* REG_ESUBREG 6 error_backref */ + "Unmatched [ or [^ in character class declaration.", /* REG_EBRACK 7 error_brack */ + "Unmatched marking parenthesis ( or \\(.", /* REG_EPAREN 8 error_paren */ + "Unmatched quantified repeat operator { or \\{.", /* REG_EBRACE 9 error_brace */ + "Invalid content of repeat range.", /* REG_BADBR 10 error_badbrace */ + "Invalid range end in character class", /* REG_ERANGE 11 error_range */ + "Out of memory.", /* REG_ESPACE 12 error_space NOT USED */ + "Invalid preceding regular expression prior to repetition operator.", /* REG_BADRPT 13 error_badrepeat */ + "Premature end of regular expression", /* REG_EEND 14 error_end NOT USED */ + "Regular expression is too large.", /* REG_ESIZE 15 error_size NOT USED */ + "Unmatched ) or \\)", /* REG_ERPAREN 16 error_right_paren NOT USED */ + "Empty regular expression.", /* REG_EMPTY 17 error_empty */ + "The complexity of matching the regular expression exceeded predefined bounds. " + "Try refactoring the regular expression to make each choice made by the state machine unambiguous. " + "This exception is thrown to prevent \"eternal\" matches that take an " + "indefinite period time to locate.", /* REG_ECOMPLEXITY 18 error_complexity */ + "Ran out of stack space trying to match the regular expression.", /* REG_ESTACK 19 error_stack */ + "Invalid or unterminated Perl (?...) sequence.", /* REG_E_PERL 20 error_perl */ + "Unknown error.", /* REG_E_UNKNOWN 21 error_unknown */ }; return (n > ::boost::regex_constants::error_unknown) ? s_default_error_messages[ ::boost::regex_constants::error_unknown] : s_default_error_messages[n]; diff --git a/src/wide_posix_api.cpp b/src/wide_posix_api.cpp index c8a91902..bdb7580e 100644 --- a/src/wide_posix_api.cpp +++ b/src/wide_posix_api.cpp @@ -65,6 +65,7 @@ const wchar_t* wnames[] = { L"REG_EMPTY", L"REG_ECOMPLEXITY", L"REG_ESTACK", + L"REG_E_PERL", L"REG_E_UNKNOWN", }; } diff --git a/test/c_compiler_checks/posix_api_check.cpp b/test/c_compiler_checks/posix_api_check.cpp index 9a94c651..8daae8f2 100644 --- a/test/c_compiler_checks/posix_api_check.cpp +++ b/test/c_compiler_checks/posix_api_check.cpp @@ -34,13 +34,13 @@ int flags = REG_EXTENDED | REG_BASIC | REG_NOSPEC | REG_ICASE | REG_NOSUB | int main() { regex_tA re; - int result; + unsigned int result; result = regcompA(&re, expression, REG_AWK); if(result > REG_NOERROR) { char buf[256]; regerrorA(result, &re, buf, sizeof(buf)); - printf(buf); + printf("%s", buf); return result; } BOOST_TEST(re.re_nsub == 0); @@ -51,11 +51,11 @@ int main() { char buf[256]; regerrorA(result, &re, buf, sizeof(buf)); - printf(buf); + printf("%s", buf); regfreeA(&re); return result; } - BOOST_TEST(matches[0].rm_so == matches[0].rm_eo == 1); + BOOST_TEST(matches[0].rm_so == matches[0].rm_eo); regfreeA(&re); printf("no errors found\n"); return boost::report_errors(); diff --git a/test/c_compiler_checks/wide_posix_api_check.cpp b/test/c_compiler_checks/wide_posix_api_check.cpp index 7e699f03..30172619 100644 --- a/test/c_compiler_checks/wide_posix_api_check.cpp +++ b/test/c_compiler_checks/wide_posix_api_check.cpp @@ -40,7 +40,7 @@ int flags = REG_EXTENDED | REG_BASIC | REG_NOSPEC | REG_ICASE | REG_NOSUB | int main() { regex_t re; - int result; + unsigned result; result = regcomp(&re, expression, REG_AWK); if(result > REG_NOERROR) { @@ -48,8 +48,8 @@ int main() regerror(result, &re, buf, sizeof(buf)); char nbuf[256]; for(int i = 0; i < 256; ++i) - nbuf[i] = buf[i]; - printf(nbuf); + nbuf[i] = static_cast(buf[i]); + printf("%s", nbuf); return result; } if(re.re_nsub != 0) @@ -66,8 +66,8 @@ int main() regerror(result, &re, buf, sizeof(buf)); char nbuf[256]; for(int i = 0; i < 256; ++i) - nbuf[i] = buf[i]; - printf(nbuf); + nbuf[i] = static_cast(buf[i]); + printf("%s", nbuf); regfree(&re); return result; } @@ -77,7 +77,7 @@ int main() exit(-1); } regfree(&re); - printf("no errors found\n"); + printf("%s", "no errors found\n"); return 0; } diff --git a/test/regress/test_deprecated.cpp b/test/regress/test_deprecated.cpp index 84eefb9f..276fa599 100644 --- a/test/regress/test_deprecated.cpp +++ b/test/regress/test_deprecated.cpp @@ -137,7 +137,7 @@ void test_deprecated(const char&, const test_regex_search_tag&) if(test_info::syntax_options() & ~boost::regex::icase) return; try{ - boost::RegEx e(expression, test_info::syntax_options() & boost::regex::icase); + boost::RegEx e(expression, (test_info::syntax_options() & boost::regex::icase) != 0); if(e.error_code()) { BOOST_REGEX_TEST_ERROR("Expression did not compile when it should have done, error code = " << e.error_code(), char); @@ -303,7 +303,7 @@ void test_deprecated(const char&, const test_invalid_regex_tag&) return; bool have_catch = false; try{ - boost::RegEx e(expression, test_info::syntax_options() & boost::regex::icase); + boost::RegEx e(expression, (test_info::syntax_options() & boost::regex::icase) != 0); if(e.error_code()) have_catch = true; } diff --git a/test/regress/test_escapes.cpp b/test/regress/test_escapes.cpp index d2dbbe43..e3d675be 100644 --- a/test/regress/test_escapes.cpp +++ b/test/regress/test_escapes.cpp @@ -12,7 +12,7 @@ #include "test.hpp" #ifdef BOOST_MSVC -#pragma warning(disable:4127) +#pragma warning(disable:4127 4428) #endif void test_character_escapes() diff --git a/test/regress/test_simple_repeats.cpp b/test/regress/test_simple_repeats.cpp index 690c71eb..1ebdc707 100644 --- a/test/regress/test_simple_repeats.cpp +++ b/test/regress/test_simple_repeats.cpp @@ -172,6 +172,7 @@ void test_simple_repeats() TEST_REGEX_SEARCH("^a{0,1}?$", perl, "aaaaa", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("^(?:a){0,1}?$", perl, "aaaaa", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("^a(?:bc)?", perl, "abcbc", match_any|match_all, make_array(-2, -2)); + test_simple_repeats2(); } void test_simple_repeats2() diff --git a/test/static_mutex/static_mutex_test.cpp b/test/static_mutex/static_mutex_test.cpp index 72a8cd49..b31eefac 100644 --- a/test/static_mutex/static_mutex_test.cpp +++ b/test/static_mutex/static_mutex_test.cpp @@ -161,7 +161,7 @@ startup1 up1; int main() { - BOOST_TEST(0 != &up1); + (void)up1; std::list > threads; for(int i = 0; i < 2; ++i) From 97005c20175cbcf6e7140c8e52d53b463742beee Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 18 Nov 2009 09:59:42 +0000 Subject: [PATCH 14/77] Suppress external templates with Mingw32 - it seems to cause issues with dll's. Fix match_results.swap. Add missing namespace qualifiers to ICU code: fixes #3631. [SVN r57739] --- example/snippets/icu_example.cpp | 18 ++++++------- include/boost/regex/config.hpp | 6 +++++ include/boost/regex/icu.hpp | 26 +++++++++---------- include/boost/regex/v4/match_results.hpp | 2 ++ include/boost/regex/v4/u32regex_iterator.hpp | 2 +- .../regex/v4/u32regex_token_iterator.hpp | 6 ++--- test/concepts/icu_concept_check.cpp | 9 ++++++- test/regress/test_icu.cpp | 2 +- 8 files changed, 43 insertions(+), 28 deletions(-) diff --git a/example/snippets/icu_example.cpp b/example/snippets/icu_example.cpp index 8f4a41ed..7dbd5b84 100644 --- a/example/snippets/icu_example.cpp +++ b/example/snippets/icu_example.cpp @@ -28,7 +28,7 @@ // Find out if *password* meets our password requirements, // as defined by the regular expression *requirements*. // -bool is_valid_password(const UnicodeString& password, const UnicodeString& requirements) +bool is_valid_password(const U_NAMESPACE_QUALIFIER UnicodeString& password, const U_NAMESPACE_QUALIFIER UnicodeString& requirements) { return boost::u32regex_match(password, boost::make_u32regex(requirements)); } @@ -52,7 +52,7 @@ std::string get_filename(const std::string& path) } } -UnicodeString extract_greek(const UnicodeString& text) +U_NAMESPACE_QUALIFIER UnicodeString extract_greek(const U_NAMESPACE_QUALIFIER UnicodeString& text) { // searches through some UTF-16 encoded text for a block encoded in Greek, // this expression is imperfect, but the best we can do for now - searching @@ -62,7 +62,7 @@ UnicodeString extract_greek(const UnicodeString& text) if(boost::u32regex_search(text, what, r)) { // extract $0 as a UnicodeString: - return UnicodeString(what[0].first, what.length(0)); + return U_NAMESPACE_QUALIFIER UnicodeString(what[0].first, what.length(0)); } else { @@ -127,7 +127,7 @@ void enumerate_currencies2(const std::string& text) const boost::u32regex e = boost::make_u32regex("\\A(\\d{3,4})[- ]?(\\d{4})[- ]?(\\d{4})[- ]?(\\d{4})\\z"); const char* human_format = "$1-$2-$3-$4"; -UnicodeString human_readable_card_number(const UnicodeString& s) +U_NAMESPACE_QUALIFIER UnicodeString human_readable_card_number(const U_NAMESPACE_QUALIFIER UnicodeString& s) { return boost::u32regex_replace(s, e, human_format); } @@ -136,8 +136,8 @@ UnicodeString human_readable_card_number(const UnicodeString& s) int main() { // password checks using u32regex_match: - UnicodeString pwd = "abcDEF---"; - UnicodeString pwd_check = "(?=.*[[:lower:]])(?=.*[[:upper:]])(?=.*[[:punct:]]).{6,}"; + U_NAMESPACE_QUALIFIER UnicodeString pwd = "abcDEF---"; + U_NAMESPACE_QUALIFIER UnicodeString pwd_check = "(?=.*[[:lower:]])(?=.*[[:upper:]])(?=.*[[:punct:]]).{6,}"; bool b = is_valid_password(pwd, pwd_check); assert(b); pwd = "abcD-"; @@ -152,8 +152,8 @@ int main() assert(file == "d.h"); // Greek text extraction with u32regex_search: - UnicodeString text = L"Some where in \x0391\x039D\x0395\x0398\x0391 2004"; - UnicodeString greek = extract_greek(text); + U_NAMESPACE_QUALIFIER UnicodeString text = L"Some where in \x0391\x039D\x0395\x0398\x0391 2004"; + U_NAMESPACE_QUALIFIER UnicodeString greek = extract_greek(text); assert(greek == L"\x0391\x039D\x0395\x0398\x0391 2004"); // extract currency symbols with associated value, use iterator interface: @@ -161,7 +161,7 @@ int main() enumerate_currencies(text2); enumerate_currencies2(text2); - UnicodeString credit_card_number = "1234567887654321"; + U_NAMESPACE_QUALIFIER UnicodeString credit_card_number = "1234567887654321"; credit_card_number = human_readable_card_number(credit_card_number); assert(credit_card_number == "1234-5678-8765-4321"); return 0; diff --git a/include/boost/regex/config.hpp b/include/boost/regex/config.hpp index 8306f3ff..e4b21384 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -92,6 +92,12 @@ #if defined(_MSC_VER) && !defined(_MSC_EXTENSIONS) # define BOOST_REGEX_NO_EXTERNAL_TEMPLATES #endif +/* + * Shared regex lib will crash without this, frankly it looks a lot like a gcc bug: + */ +#if defined(__MINGW32__) +# define BOOST_REGEX_NO_EXTERNAL_TEMPLATES +#endif /* * If there isn't good enough wide character support then there will diff --git a/include/boost/regex/icu.hpp b/include/boost/regex/icu.hpp index 24715572..c8770c6d 100644 --- a/include/boost/regex/icu.hpp +++ b/include/boost/regex/icu.hpp @@ -376,7 +376,7 @@ inline u32regex make_u32regex(const std::basic_string& s, boost::regex_ // // Construction from ICU string type: // -inline u32regex make_u32regex(const UnicodeString& s, boost::regex_constants::syntax_option_type opt = boost::regex_constants::perl) +inline u32regex make_u32regex(const U_NAMESPACE_QUALIFIER UnicodeString& s, boost::regex_constants::syntax_option_type opt = boost::regex_constants::perl) { return re_detail::do_make_u32regex(s.getBuffer(), s.getBuffer() + s.length(), opt, static_cast const*>(0)); } @@ -498,7 +498,7 @@ inline bool u32regex_match(const std::wstring& s, return re_detail::do_regex_match(s.begin(), s.end(), m, e, flags, static_cast const*>(0)); } #endif -inline bool u32regex_match(const UnicodeString& s, +inline bool u32regex_match(const U_NAMESPACE_QUALIFIER UnicodeString& s, match_results& m, const u32regex& e, match_flag_type flags = match_default) @@ -562,7 +562,7 @@ inline bool u32regex_match(const std::wstring& s, return re_detail::do_regex_match(s.begin(), s.end(), m, e, flags, static_cast const*>(0)); } #endif -inline bool u32regex_match(const UnicodeString& s, +inline bool u32regex_match(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, match_flag_type flags = match_default) { @@ -683,7 +683,7 @@ inline bool u32regex_search(const std::wstring& s, return re_detail::do_regex_search(s.begin(), s.end(), m, e, flags, s.begin(), static_cast const*>(0)); } #endif -inline bool u32regex_search(const UnicodeString& s, +inline bool u32regex_search(const U_NAMESPACE_QUALIFIER UnicodeString& s, match_results& m, const u32regex& e, match_flag_type flags = match_default) @@ -744,7 +744,7 @@ inline bool u32regex_search(const std::wstring& s, return re_detail::do_regex_search(s.begin(), s.end(), m, e, flags, s.begin(), static_cast const*>(0)); } #endif -inline bool u32regex_search(const UnicodeString& s, +inline bool u32regex_search(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, match_flag_type flags = match_default) { @@ -921,7 +921,7 @@ inline OutputIterator u32regex_replace(OutputIterator out, Iterator first, Iterator last, const u32regex& e, - const UnicodeString& fmt, + const U_NAMESPACE_QUALIFIER UnicodeString& fmt, match_flag_type flags = match_default) { return re_detail::extract_output_base @@ -966,9 +966,9 @@ namespace re_detail{ class unicode_string_out_iterator { - UnicodeString* out; + U_NAMESPACE_QUALIFIER UnicodeString* out; public: - unicode_string_out_iterator(UnicodeString& s) : out(&s) {} + unicode_string_out_iterator(U_NAMESPACE_QUALIFIER UnicodeString& s) : out(&s) {} unicode_string_out_iterator& operator++() { return *this; } unicode_string_out_iterator& operator++(int) { return *this; } unicode_string_out_iterator& operator*() { return *this; } @@ -986,23 +986,23 @@ public: } -inline UnicodeString u32regex_replace(const UnicodeString& s, +inline U_NAMESPACE_QUALIFIER UnicodeString u32regex_replace(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, const UChar* fmt, match_flag_type flags = match_default) { - UnicodeString result; + U_NAMESPACE_QUALIFIER UnicodeString result; re_detail::unicode_string_out_iterator i(result); u32regex_replace(i, s.getBuffer(), s.getBuffer()+s.length(), e, fmt, flags); return result; } -inline UnicodeString u32regex_replace(const UnicodeString& s, +inline U_NAMESPACE_QUALIFIER UnicodeString u32regex_replace(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, - const UnicodeString& fmt, + const U_NAMESPACE_QUALIFIER UnicodeString& fmt, match_flag_type flags = match_default) { - UnicodeString result; + U_NAMESPACE_QUALIFIER UnicodeString result; re_detail::unicode_string_out_iterator i(result); re_detail::do_regex_replace( re_detail::make_utf32_out(i, static_cast const*>(0)), diff --git a/include/boost/regex/v4/match_results.hpp b/include/boost/regex/v4/match_results.hpp index e493810b..000bb43a 100644 --- a/include/boost/regex/v4/match_results.hpp +++ b/include/boost/regex/v4/match_results.hpp @@ -348,6 +348,8 @@ public: { std::swap(m_subs, that.m_subs); std::swap(m_base, that.m_base); + std::swap(m_named_subs, that.m_named_subs); + std::swap(m_last_closed_paren, that.m_last_closed_paren); } bool operator==(const match_results& that)const { diff --git a/include/boost/regex/v4/u32regex_iterator.hpp b/include/boost/regex/v4/u32regex_iterator.hpp index 7e893e69..65ebd7f8 100644 --- a/include/boost/regex/v4/u32regex_iterator.hpp +++ b/include/boost/regex/v4/u32regex_iterator.hpp @@ -178,7 +178,7 @@ inline u32regex_iterator::const typedef typename std::basic_string::const_iterator iter_type; return u32regex_iterator(p.begin(), p.end(), e, m); } -inline u32regex_iterator make_u32regex_iterator(const UnicodeString& s, const u32regex& e, regex_constants::match_flag_type m = regex_constants::match_default) +inline u32regex_iterator make_u32regex_iterator(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, regex_constants::match_flag_type m = regex_constants::match_default) { return u32regex_iterator(s.getBuffer(), s.getBuffer() + s.length(), e, m); } diff --git a/include/boost/regex/v4/u32regex_token_iterator.hpp b/include/boost/regex/v4/u32regex_token_iterator.hpp index 2726d486..c47a2192 100644 --- a/include/boost/regex/v4/u32regex_token_iterator.hpp +++ b/include/boost/regex/v4/u32regex_token_iterator.hpp @@ -294,7 +294,7 @@ inline u32regex_token_iterator: typedef typename std::basic_string::const_iterator iter_type; return u32regex_token_iterator(p.begin(), p.end(), e, m); } -inline u32regex_token_iterator make_u32regex_token_iterator(const UnicodeString& s, const u32regex& e, int submatch = 0, regex_constants::match_flag_type m = regex_constants::match_default) +inline u32regex_token_iterator make_u32regex_token_iterator(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, int submatch = 0, regex_constants::match_flag_type m = regex_constants::match_default) { return u32regex_token_iterator(s.getBuffer(), s.getBuffer() + s.length(), e, submatch, m); } @@ -327,7 +327,7 @@ inline u32regex_token_iterator: return u32regex_token_iterator(p.begin(), p.end(), e, m); } template -inline u32regex_token_iterator make_u32regex_token_iterator(const UnicodeString& s, const u32regex& e, const int (&submatch)[N], regex_constants::match_flag_type m = regex_constants::match_default) +inline u32regex_token_iterator make_u32regex_token_iterator(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, const int (&submatch)[N], regex_constants::match_flag_type m = regex_constants::match_default) { return u32regex_token_iterator(s.getBuffer(), s.getBuffer() + s.length(), e, submatch, m); } @@ -356,7 +356,7 @@ inline u32regex_token_iterator: typedef typename std::basic_string::const_iterator iter_type; return u32regex_token_iterator(p.begin(), p.end(), e, m); } -inline u32regex_token_iterator make_u32regex_token_iterator(const UnicodeString& s, const u32regex& e, const std::vector& submatch, regex_constants::match_flag_type m = regex_constants::match_default) +inline u32regex_token_iterator make_u32regex_token_iterator(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, const std::vector& submatch, regex_constants::match_flag_type m = regex_constants::match_default) { return u32regex_token_iterator(s.getBuffer(), s.getBuffer() + s.length(), e, submatch, m); } diff --git a/test/concepts/icu_concept_check.cpp b/test/concepts/icu_concept_check.cpp index 59fd2a04..526758a4 100644 --- a/test/concepts/icu_concept_check.cpp +++ b/test/concepts/icu_concept_check.cpp @@ -8,6 +8,13 @@ * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) * */ + +// +// This define keep ICU in it's own namespace: helps us to track bugs that would +// otherwise go unnoticed: +// +#define U_USING_ICU_NAMESPACE 0 + #include #if defined(BOOST_MSVC) @@ -66,7 +73,7 @@ int main() boost::regex_constants::match_flag_type flgs = boost::regex_constants::match_default; std::string s1; std::wstring s2; - UnicodeString us; + U_NAMESPACE_QUALIFIER UnicodeString us; b = boost::u32regex_match(utf8_arch1(), utf8_arch1(), m1, e1, flgs); b = boost::u32regex_match(utf8_arch1(), utf8_arch1(), m1, e1); b = boost::u32regex_match(utf8_arch2(), utf8_arch2(), m2, e1, flgs); diff --git a/test/regress/test_icu.cpp b/test/regress/test_icu.cpp index 88d6fe4a..16f667d9 100644 --- a/test/regress/test_icu.cpp +++ b/test/regress/test_icu.cpp @@ -564,7 +564,7 @@ void test_icu(const wchar_t&, const test_regex_replace_tag&) // // Now with UnicodeString: // - UnicodeString expression16u, text16u, format16u, result16u, found16u; + U_NAMESPACE_QUALIFIER UnicodeString expression16u, text16u, format16u, result16u, found16u; if(expression16.size()) expression16u.setTo(&*expression16.begin(), expression16.size()); if(text16.size()) From 1f38675c1c45cf0c9bac302695dcb8c2a8fb08d3 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 19 Nov 2009 18:33:12 +0000 Subject: [PATCH 15/77] Suppress MSVC warning message. [SVN r57787] --- src/usinstances.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/usinstances.cpp b/src/usinstances.cpp index ca7b1dc9..44ebd28d 100644 --- a/src/usinstances.cpp +++ b/src/usinstances.cpp @@ -17,6 +17,9 @@ */ #define BOOST_REGEX_SOURCE +#ifdef _MSC_VER +#pragma warning(disable:4506) // 'no definition for inline function' +#endif #include #include From a83329dd28fe1f1821c153c4416eb5e4382650ef Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 23 Nov 2009 10:45:44 +0000 Subject: [PATCH 16/77] Allow std::locale's to not have a messages facet installed (fixes some STLPort issues). Allow match_results to handle singular iterators. Update docs to match. [SVN r57860] --- doc/history.qbk | 4 +- .../background_information/examples.html | 6 +- .../background_information/history.html | 20 ++-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 +-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 +-- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 +++++------ doc/html/boost_regex/syntax/basic_syntax.html | 44 +++---- doc/html/boost_regex/syntax/perl_syntax.html | 96 +++++++-------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- include/boost/regex/v4/cpp_regex_traits.hpp | 10 +- include/boost/regex/v4/match_results.hpp | 112 ++++++++++++++++-- src/cpp_regex_traits.cpp | 2 +- test/regress/test_regex_search.hpp | 20 +++- 36 files changed, 324 insertions(+), 212 deletions(-) diff --git a/doc/history.qbk b/doc/history.qbk index 93721338..cfe8be5a 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -15,7 +15,9 @@ * Fixed tickets [@https://svn.boost.org/trac/boost/ticket/2802 #2802], [@https://svn.boost.org/trac/boost/ticket/2802 #3425], -[@https://svn.boost.org/trac/boost/ticket/2802 #3507] +[@https://svn.boost.org/trac/boost/ticket/2802 #3507], +[@https://svn.boost.org/trac/boost/ticket/2802 #3631], +[@https://svn.boost.org/trac/boost/ticket/2802 #3632] [h4 Boost 1.40] diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 1e41d80a..9e7c7b84 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -107,7 +107,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -133,7 +133,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 78843041..e2088341 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -26,7 +26,7 @@ History
    - + Boost 1.42
    @@ -41,11 +41,13 @@
  • Fixed tickets #2802, #3425, - #3507 + #3507, + #3631, + #3632
  • - + Boost 1.40
    @@ -54,7 +56,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -81,7 +83,7 @@
    - + Boost 1.34
    @@ -104,7 +106,7 @@
    - + Boost 1.33.1
    @@ -174,7 +176,7 @@
    - + Boost 1.33.0
    @@ -229,7 +231,7 @@
    - + Boost 1.32.1
    @@ -237,7 +239,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 8295fabf..b45be24a 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 3750ec0f..504d151f 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -62,7 +62,7 @@ (??{code}) Not implementable in a compiled strongly typed language.

    - + POSIX

    @@ -82,7 +82,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 0f96c192..513b2d70 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 405559a1..cdd8df31 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 3814b219..acb85bf4 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -302,7 +302,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 59fd3394..7bfd4a15 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index 3d075673..6cb54977 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
      basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -727,7 +727,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -829,7 +829,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1043,7 +1043,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index cf7b4bfc..9b9a27f1 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -381,7 +381,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index e180cd65..46e4e192 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index be29dc1e..974e2e9e 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 60e92782..cb815993 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index ff713f31..85c793fc 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 64e132b3..ea4990c7 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 35218c32..b98491ba 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index aa5a33f3..446807c8 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 4fb400ee..7da7204a 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 8b29bc24..d2347337 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

    - + regcomp

    @@ -379,7 +379,7 @@

    - + regerror

    @@ -467,7 +467,7 @@

    - + regexec

    @@ -537,7 +537,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index bad49256..15ddae1f 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -436,7 +436,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index d583cb24..c16597ee 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -360,7 +360,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index bc80e088..58dce2a9 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -196,7 +196,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 57c74191..271b4978 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -355,7 +355,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index c27d4839..df51d3f2 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -383,7 +383,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index de52d978..a2d4e8c1 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 14974ee7..deafd743 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members

    @@ -473,7 +473,7 @@

    - + sub_match non-member operators
    @@ -1008,7 +1008,7 @@ + m2.str().

    - + Stream inserter

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 2e4acb2d..c489bf18 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1101,7 +1101,7 @@ cab
    - + What Gets Matched
    @@ -1111,11 +1111,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1136,7 +1136,7 @@ cab used with the -E option.

    - + awk

    @@ -1150,7 +1150,7 @@ cab these by default anyway.

    - + Options

    @@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 8e72991b..4aefc902 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index d25b6b42..51b89f2b 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Pocessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1046,7 +1046,7 @@ to the regular expression \n*\z

    - + Continuation Escape
    @@ -1058,7 +1058,7 @@ one ended.

    - + Quoting escape

    @@ -1071,7 +1071,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1081,7 +1081,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1090,7 +1090,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1105,7 +1105,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1114,7 +1114,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1123,7 +1123,7 @@ (?.

    - + Named Subexpressions
    @@ -1145,14 +1145,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1166,7 +1166,7 @@ pattern only.

    - + Non-marking groups
    @@ -1175,7 +1175,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1197,7 +1197,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1220,7 +1220,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1234,7 +1234,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1247,7 +1247,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1271,7 +1271,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1319,7 +1319,7 @@
    - + Operator precedence
    @@ -1354,7 +1354,7 @@

    - + What gets matched

    @@ -1529,7 +1529,7 @@

    - + Variations

    @@ -1538,7 +1538,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1550,7 +1550,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1562,7 +1562,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index c42b2069..e8b83118 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index 49e413a5..7a07ac36 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: November 06, 2009 at 18:12:56 GMT

    Last revised: November 19, 2009 at 18:39:18 GMT


    diff --git a/include/boost/regex/v4/cpp_regex_traits.hpp b/include/boost/regex/v4/cpp_regex_traits.hpp index 5255404b..bb40aa1e 100644 --- a/include/boost/regex/v4/cpp_regex_traits.hpp +++ b/include/boost/regex/v4/cpp_regex_traits.hpp @@ -187,6 +187,7 @@ struct cpp_regex_traits_base #ifndef BOOST_NO_STD_MESSAGES if(m_pmessages == b.m_pmessages) { + return m_pcollate < b.m_pcollate; } return m_pmessages < b.m_pmessages; #else @@ -212,7 +213,7 @@ std::locale cpp_regex_traits_base::imbue(const std::locale& l) m_locale = l; m_pctype = &BOOST_USE_FACET(std::ctype, l); #ifndef BOOST_NO_STD_MESSAGES - m_pmessages = &BOOST_USE_FACET(std::messages, l); + m_pmessages = BOOST_HAS_FACET(std::messages, l) ? &BOOST_USE_FACET(std::messages, l) : 0; #endif m_pcollate = &BOOST_USE_FACET(std::collate, l); return result; @@ -276,7 +277,7 @@ void cpp_regex_traits_char_layer::init() typename std::messages::catalog cat = reinterpret_cast::catalog>(-1); #endif std::string cat_name(cpp_regex_traits::get_catalog_name()); - if(cat_name.size()) + if(cat_name.size() && (this->m_pmessages != 0)) { cat = this->m_pmessages->open( cat_name, @@ -309,7 +310,8 @@ void cpp_regex_traits_char_layer::init() } catch(...) { - this->m_pmessages->close(cat); + if(this->m_pmessages) + this->m_pmessages->close(cat); throw; } #endif @@ -653,7 +655,7 @@ void cpp_regex_traits_implementation::init() typename std::messages::catalog cat = reinterpret_cast::catalog>(-1); #endif std::string cat_name(cpp_regex_traits::get_catalog_name()); - if(cat_name.size()) + if(cat_name.size() && (this->m_pmessages != 0)) { cat = this->m_pmessages->open( cat_name, diff --git a/include/boost/regex/v4/match_results.hpp b/include/boost/regex/v4/match_results.hpp index 000bb43a..d71908ee 100644 --- a/include/boost/regex/v4/match_results.hpp +++ b/include/boost/regex/v4/match_results.hpp @@ -74,16 +74,30 @@ public: // construct/copy/destroy: explicit match_results(const Allocator& a = Allocator()) #ifndef BOOST_NO_STD_ALLOCATOR - : m_subs(a), m_base(), m_last_closed_paren(0) {} + : m_subs(a), m_base(), m_last_closed_paren(0), m_is_singular(true) {} #else - : m_subs(), m_base(), m_last_closed_paren(0) { (void)a; } + : m_subs(), m_base(), m_last_closed_paren(0), m_is_singular(true) { (void)a; } #endif match_results(const match_results& m) - : m_subs(m.m_subs), m_base(m.m_base) {} + : m_subs(m.m_subs), m_named_subs(m.m_named_subs), m_last_closed_paren(m.m_last_closed_paren), m_is_singular(m.m_is_singular) + { + if(!m_is_singular) + { + m_base = m.m_base; + m_null = m.m_null; + } + } match_results& operator=(const match_results& m) { m_subs = m.m_subs; - m_base = m.m_base; + m_named_subs = m.m_named_subs; + m_last_closed_paren = m.m_last_closed_paren; + m_is_singular = m.m_is_singular; + if(!m_is_singular) + { + m_base = m.m_base; + m_null = m.m_null; + } return *this; } ~match_results(){} @@ -98,6 +112,8 @@ public: // element access: difference_type length(int sub = 0) const { + if(m_is_singular) + raise_logic_error(); sub += 2; if((sub < (int)m_subs.size()) && (sub > 0)) return m_subs[sub].length(); @@ -105,6 +121,8 @@ public: } difference_type length(const char_type* sub) const { + if(m_is_singular) + raise_logic_error(); const char_type* end = sub; while(*end) ++end; return length(named_subexpression_index(sub, end)); @@ -112,6 +130,8 @@ public: template difference_type length(const charT* sub) const { + if(m_is_singular) + raise_logic_error(); const charT* end = sub; while(*end) ++end; return length(named_subexpression_index(sub, end)); @@ -123,6 +143,8 @@ public: } difference_type position(size_type sub = 0) const { + if(m_is_singular) + raise_logic_error(); sub += 2; if(sub < m_subs.size()) { @@ -154,6 +176,8 @@ public: } string_type str(int sub = 0) const { + if(m_is_singular) + raise_logic_error(); sub += 2; string_type result; if(sub < (int)m_subs.size() && (sub > 0)) @@ -187,6 +211,8 @@ public: } const_reference operator[](int sub) const { + if(m_is_singular && m_subs.empty()) + raise_logic_error(); sub += 2; if(sub < (int)m_subs.size() && (sub >= 0)) { @@ -199,6 +225,8 @@ public: // const_reference named_subexpression(const char_type* i, const char_type* j) const { + if(m_is_singular) + raise_logic_error(); int index = m_named_subs->get_id(i, j); return index > 0 ? (*this)[index] : m_null; } @@ -215,6 +243,8 @@ public: } int named_subexpression_index(const char_type* i, const char_type* j) const { + if(m_is_singular) + raise_logic_error(); int index = m_named_subs->get_id(i, j); return index > 0 ? index : -20; } @@ -266,11 +296,15 @@ public: const_reference prefix() const { + if(m_is_singular) + raise_logic_error(); return (*this)[-1]; } const_reference suffix() const { + if(m_is_singular) + raise_logic_error(); return (*this)[-2]; } const_iterator begin() const @@ -287,6 +321,8 @@ public: Functor fmt, match_flag_type flags = format_default) const { + if(m_is_singular) + raise_logic_error(); typedef typename re_detail::compute_functor_type, OutputIterator>::type F; F func(fmt); return func(*this, out, flags); @@ -294,6 +330,8 @@ public: template string_type format(Functor fmt, match_flag_type flags = format_default) const { + if(m_is_singular) + raise_logic_error(); std::basic_string result; re_detail::string_out_iterator > i(result); @@ -310,6 +348,8 @@ public: match_flag_type flags, const RegexT& re) const { + if(m_is_singular) + raise_logic_error(); typedef ::boost::regex_traits_wrapper traits_type; typedef typename re_detail::compute_functor_type, OutputIterator, traits_type>::type F; F func(fmt); @@ -320,6 +360,8 @@ public: match_flag_type flags, const RegexT& re) const { + if(m_is_singular) + raise_logic_error(); typedef ::boost::regex_traits_wrapper traits_type; std::basic_string result; re_detail::string_out_iterator > i(result); @@ -333,6 +375,8 @@ public: const_reference get_last_closed_paren()const { + if(m_is_singular) + raise_logic_error(); return m_last_closed_paren == 0 ? m_null : (*this)[m_last_closed_paren]; } @@ -347,13 +391,39 @@ public: void swap(match_results& that) { std::swap(m_subs, that.m_subs); - std::swap(m_base, that.m_base); std::swap(m_named_subs, that.m_named_subs); std::swap(m_last_closed_paren, that.m_last_closed_paren); + std::swap(m_is_singular, that.m_is_singular); + if(m_is_singular) + { + if(!that.m_is_singular) + { + m_base = that.m_base; + m_null = that.m_null; + } + } + else if(that.m_is_singular) + { + that.m_base = m_base; + that.m_null = m_null; + } + else + { + std::swap(m_base, that.m_base); + std::swap(m_null, that.m_null); + } } bool operator==(const match_results& that)const { - return (m_subs == that.m_subs) && (m_base == that.m_base); + if(m_is_singular) + { + return that.m_is_singular; + } + else if(that.m_is_singular) + { + return false; + } + return (m_subs == that.m_subs) && (m_base == that.m_base) && (m_last_closed_paren == that.m_last_closed_paren); } bool operator!=(const match_results& that)const { return !(*this == that); } @@ -363,6 +433,8 @@ public: const capture_sequence_type& captures(int i)const { + if(m_is_singular) + raise_logic_error(); return (*this)[i].captures(); } #endif @@ -379,6 +451,7 @@ public: m_null.first = i; m_null.second = i; m_null.matched = false; + m_is_singular = false; } void BOOST_REGEX_CALL set_second(BidiIterator i, size_type pos, bool m = true, bool escape_k = false) @@ -396,6 +469,7 @@ public: m_null.first = i; m_null.second = i; m_null.matched = false; + m_is_singular = false; } } void BOOST_REGEX_CALL set_size(size_type n, BidiIterator i, BidiIterator j) @@ -462,16 +536,32 @@ public: } private: - vector_type m_subs; // subexpressions - BidiIterator m_base; // where the search started from - sub_match m_null; // a null match - boost::shared_ptr m_named_subs; - int m_last_closed_paren; + // + // Error handler called when an uninitialized match_results is accessed: + // + static void raise_logic_error() + { + std::logic_error e("Attempt to access an uninitialzed boost::match_results<> class."); + boost::throw_exception(e); + } + + + vector_type m_subs; // subexpressions + BidiIterator m_base; // where the search started from + sub_match m_null; // a null match + boost::shared_ptr m_named_subs; // Shared copy of named subs in the regex object + int m_last_closed_paren; // Last ) to be seen - used for formatting + bool m_is_singular; // True if our stored iterators are singular }; template void BOOST_REGEX_CALL match_results::maybe_assign(const match_results& m) { + if(m_is_singular) + { + *this = m; + return; + } const_iterator p1, p2; p1 = begin(); p2 = m.begin(); diff --git a/src/cpp_regex_traits.cpp b/src/cpp_regex_traits.cpp index 9ed66be6..1d24cc1a 100644 --- a/src/cpp_regex_traits.cpp +++ b/src/cpp_regex_traits.cpp @@ -42,7 +42,7 @@ void cpp_regex_traits_char_layer::init() std::messages::catalog cat = reinterpret_cast::catalog>(-1); #endif std::string cat_name(cpp_regex_traits::get_catalog_name()); - if(cat_name.size()) + if(cat_name.size() && (m_pmessages != 0)) { cat = this->m_pmessages->open( cat_name, diff --git a/test/regress/test_regex_search.hpp b/test/regress/test_regex_search.hpp index debb1efb..bb6df2d3 100644 --- a/test/regress/test_regex_search.hpp +++ b/test/regress/test_regex_search.hpp @@ -29,12 +29,17 @@ struct test_regex_search_tag{}; template -void test_sub_match(const boost::sub_match& sub, BidirectionalIterator base, const int* answer_table, int i) +void test_sub_match(const boost::sub_match& sub, BidirectionalIterator base, const int* answer_table, int i, bool recurse = true) { #ifdef BOOST_MSVC #pragma warning(push) #pragma warning(disable:4244) #endif + if(recurse) + { + boost::sub_match copy(sub); + test_sub_match(copy, base, answer_table, i, false); + } typedef typename boost::sub_match::value_type charT; if((sub.matched == 0) && @@ -71,8 +76,19 @@ void test_sub_match(const boost::sub_match& sub, Bidirect } template -void test_result(const boost::match_results& what, BidirectionalIterator base, const int* answer_table) +void test_result(const boost::match_results& what, BidirectionalIterator base, const int* answer_table, bool recurse = true) { + if(recurse) + { + boost::match_results copy(what); + test_result(copy, base, answer_table, false); + boost::match_results s; + s.swap(copy); + test_result(s, base, answer_table, false); + boost::match_results s2; + s2 = what; + test_result(s2, base, answer_table, false); + } for(unsigned i = 0; i < what.size(); ++i) { test_sub_match(what[i], base, answer_table, i); From 35c63fc141e746d45b9bd52932c2b5f0c5927c8c Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 5 Dec 2009 12:15:20 +0000 Subject: [PATCH 17/77] Fix -Wshadow gcc warnings. Update and regenerate docs. Fixes #3718. [SVN r58154] --- doc/history.qbk | 18 +++- .../boost_regex/background_information.html | 4 +- .../acknowledgements.html | 8 +- .../background_information/examples.html | 10 +- .../background_information/faq.html | 4 +- .../background_information/futher.html | 4 +- .../background_information/headers.html | 4 +- .../background_information/history.html | 41 ++++--- .../background_information/locale.html | 72 ++++++------- .../background_information/performance.html | 4 +- .../background_information/redist.html | 4 +- .../background_information/standards.html | 18 ++-- .../background_information/thread_safety.html | 4 +- doc/html/boost_regex/captures.html | 10 +- doc/html/boost_regex/configuration.html | 4 +- .../boost_regex/configuration/algorithm.html | 4 +- .../boost_regex/configuration/compiler.html | 4 +- .../boost_regex/configuration/linkage.html | 4 +- .../boost_regex/configuration/locale.html | 4 +- .../boost_regex/configuration/tuning.html | 4 +- doc/html/boost_regex/format.html | 4 +- .../format/boost_format_syntax.html | 12 +-- doc/html/boost_regex/format/perl_format.html | 4 +- doc/html/boost_regex/format/sed_format.html | 4 +- doc/html/boost_regex/install.html | 20 ++-- .../introduction_and_overview.html | 4 +- doc/html/boost_regex/partial_matches.html | 4 +- doc/html/boost_regex/ref.html | 4 +- doc/html/boost_regex/ref/bad_expression.html | 8 +- doc/html/boost_regex/ref/basic_regex.html | 22 ++-- doc/html/boost_regex/ref/concepts.html | 4 +- .../ref/concepts/charT_concept.html | 4 +- .../ref/concepts/iterator_concepts.html | 4 +- .../ref/concepts/traits_concept.html | 8 +- .../ref/deprecated_interfaces.html | 4 +- .../ref/deprecated_interfaces/old_regex.html | 4 +- .../deprecated_interfaces/regex_format.html | 6 +- .../ref/deprecated_interfaces/regex_grep.html | 4 +- .../deprecated_interfaces/regex_split.html | 4 +- doc/html/boost_regex/ref/error_type.html | 8 +- doc/html/boost_regex/ref/match_flag_type.html | 6 +- doc/html/boost_regex/ref/match_results.html | 8 +- doc/html/boost_regex/ref/non_std_strings.html | 4 +- .../boost_regex/ref/non_std_strings/icu.html | 4 +- .../ref/non_std_strings/icu/intro.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 10 +- .../ref/non_std_strings/icu/unicode_iter.html | 12 +-- .../non_std_strings/icu/unicode_types.html | 4 +- .../ref/non_std_strings/mfc_strings.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 14 +-- .../mfc_strings/mfc_intro.html | 4 +- .../non_std_strings/mfc_strings/mfc_iter.html | 8 +- .../mfc_strings/mfc_regex_create.html | 4 +- .../mfc_strings/mfc_regex_types.html | 4 +- doc/html/boost_regex/ref/posix.html | 12 +-- doc/html/boost_regex/ref/regex_iterator.html | 8 +- doc/html/boost_regex/ref/regex_match.html | 8 +- doc/html/boost_regex/ref/regex_replace.html | 8 +- doc/html/boost_regex/ref/regex_search.html | 8 +- .../boost_regex/ref/regex_token_iterator.html | 8 +- doc/html/boost_regex/ref/regex_traits.html | 6 +- doc/html/boost_regex/ref/sub_match.html | 12 +-- .../boost_regex/ref/syntax_option_type.html | 4 +- .../syntax_option_type_basic.html | 4 +- .../syntax_option_type_extended.html | 4 +- .../syntax_option_type_literal.html | 4 +- .../syntax_option_type_overview.html | 4 +- .../syntax_option_type_perl.html | 4 +- .../syntax_option_type_synopsis.html | 4 +- doc/html/boost_regex/syntax.html | 4 +- .../boost_regex/syntax/basic_extended.html | 72 ++++++------- doc/html/boost_regex/syntax/basic_syntax.html | 50 ++++----- .../boost_regex/syntax/character_classes.html | 4 +- .../optional_char_class_names.html | 4 +- .../character_classes/std_char_clases.html | 4 +- .../boost_regex/syntax/collating_names.html | 4 +- .../syntax/collating_names/digraphs.html | 4 +- .../syntax/collating_names/named_unicode.html | 4 +- .../collating_names/posix_symbolic_names.html | 4 +- .../syntax/leftmost_longest_rule.html | 4 +- doc/html/boost_regex/syntax/perl_syntax.html | 102 +++++++++--------- doc/html/boost_regex/unicode.html | 8 +- doc/html/index.html | 8 +- include/boost/regex/v4/basic_regex_parser.hpp | 4 +- include/boost/regex/v4/match_results.hpp | 24 ++--- include/boost/regex/v4/regex_format.hpp | 2 +- test/regress/test_not_regex.hpp | 8 +- test/regress/test_regex_replace.hpp | 8 +- test/regress/test_regex_search.hpp | 8 +- 89 files changed, 453 insertions(+), 430 deletions(-) diff --git a/doc/history.qbk b/doc/history.qbk index cfe8be5a..d21de129 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -8,16 +8,26 @@ [section:history History] +New issues should be submitted at [@http:svn.boost.org svn.boost.org] - don't forget to include your +email address in the ticket! + +Currently open issues can be viewed [@https://svn.boost.org/trac/boost/query?status=assigned&status=new&status=reopened&component=regex&order=priority&col=id&col=summary&col=status&col=type&col=milestone&col=component here]. + +All issues including closed ones can be viewed [@https://svn.boost.org/trac/boost/query?status=assigned&status=closed&status=new&status=reopened&component=regex&order=priority&col=id&col=summary&col=status&col=type&col=milestone&col=component here]. + [h4 Boost 1.42] * Added support for Functors rather than strings as format expressions. * Improved error reporting when throwing exceptions to include better more relevant information. * Fixed tickets [@https://svn.boost.org/trac/boost/ticket/2802 #2802], -[@https://svn.boost.org/trac/boost/ticket/2802 #3425], -[@https://svn.boost.org/trac/boost/ticket/2802 #3507], -[@https://svn.boost.org/trac/boost/ticket/2802 #3631], -[@https://svn.boost.org/trac/boost/ticket/2802 #3632] +[@https://svn.boost.org/trac/boost/ticket/3425 #3425], +[@https://svn.boost.org/trac/boost/ticket/3507 #3507], +[@https://svn.boost.org/trac/boost/ticket/3546 #3546], +[@https://svn.boost.org/trac/boost/ticket/3631 #3631], +[@https://svn.boost.org/trac/boost/ticket/3632 #3632], +[@https://svn.boost.org/trac/boost/ticket/3715 #3715], +[@https://svn.boost.org/trac/boost/ticket/3718 #3718] [h4 Boost 1.40] diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index 76048eed..897462fa 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -1,6 +1,6 @@ - + Background Information @@ -47,7 +47,7 @@
    -
    - @@ -146,63 +146,63 @@ @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    @@ -355,16 +355,16 @@ Text: "now is the time for all good men to come to the aid of the party" don't use it), and a much bigger impact if you do use it, therefore to use this feature you need to:

    -
      -
    • - Define BOOST_REGEX_MATCH_EXTRA for all translation units including the library - source (the best way to do this is to uncomment this define in boost/regex/user.hpp - and then rebuild everything. -
    • -
    • - Pass the match_extra flag to the particular algorithms where you actually - need the captures information (regex_search, regex_match, or regex_iterator). -
    • +
        +
      • + Define BOOST_REGEX_MATCH_EXTRA for all translation units including the + library source (the best way to do this is to uncomment this define in + boost/regex/user.hpp and then rebuild everything. +
      • +
      • + Pass the match_extra flag to the particular algorithms where you actually + need the captures information (regex_search, regex_match, or regex_iterator). +
    - + Test Programs
    @@ -107,7 +107,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -133,7 +133,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    @@ -217,7 +217,7 @@ -
    -
    -
    - @@ -568,7 +568,7 @@
    - + Boost 1.40
    @@ -56,7 +69,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -83,7 +96,7 @@
    - + Boost 1.34
    @@ -106,7 +119,7 @@
    - + Boost 1.33.1
    @@ -176,7 +189,7 @@
    - + Boost 1.33.0
    @@ -231,7 +244,7 @@
    - + Boost 1.32.1
    @@ -239,7 +252,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    @@ -277,7 +290,7 @@ - - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + +
          
    @@ -1323,9 +1323,9 @@ "Invalid content of \{\}"

          
    @@ -1343,9 +1343,9 @@ "Invalid range end"

          
    @@ -1363,9 +1363,9 @@ "Memory exhausted"

          
    @@ -1383,9 +1383,9 @@ "Invalid preceding regular expression"

          
    @@ -1403,9 +1403,9 @@ "Premature end of regular expression"

          
    @@ -1423,9 +1423,9 @@ "Regular expression too big"

          
    @@ -1443,9 +1443,9 @@ "Unmatched ) or \)"

          
    @@ -1463,9 +1463,9 @@ "Empty expression"

          
    @@ -1483,9 +1483,9 @@ "Unknown error"

          
    @@ -1775,7 +1775,7 @@ -
    -
    - @@ -296,7 +296,7 @@ Not supported.

    - +
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -62,7 +62,7 @@ (??{code}) Not implementable in a compiled strongly typed language.

    - + POSIX

    @@ -82,7 +82,7 @@ a custom traits class.

    - + Unicode

    @@ -209,7 +209,7 @@

    Supported, note that at this level, case transformations are 1:1, many to many case folding operations are not supported (for example - "ß" to "SS"). + "ß" to "SS").

      
    @@ -549,7 +549,7 @@ -
    - @@ -1137,171 +1137,171 @@ @@ -1309,19 +1309,19 @@ @@ -1329,19 +1329,19 @@ @@ -1349,19 +1349,19 @@ @@ -1369,19 +1369,19 @@ @@ -1389,19 +1389,19 @@ @@ -1409,19 +1409,19 @@ @@ -1429,19 +1429,19 @@ @@ -1449,19 +1449,19 @@ @@ -1469,19 +1469,19 @@ @@ -1500,258 +1500,258 @@ @@ -1783,7 +1783,7 @@
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    @@ -89,7 +89,7 @@
     
     
    -
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -727,7 +727,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -829,7 +829,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1043,7 +1043,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    @@ -1319,7 +1319,7 @@
    -
    -
    -
    -
    - + Additional Optional Requirements
    @@ -579,7 +579,7 @@ -
    -
    -
    -
    -
    -
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    @@ -257,7 +257,7 @@ -
    -
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    @@ -790,7 +790,7 @@ -
    -
    -
    -
    -
    - + u32regex_iterator

    @@ -115,18 +115,18 @@

    Calling

    -
    enumerate_currencies(" $100.23 or £198.12 ");
    +
    enumerate_currencies(" $100.23 or £198.12 ");

    Yields the output:

    $100.23
    -£198.12
    +£198.12
     

    Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    @@ -309,7 +309,7 @@ -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - + sub_match non-member operators
    @@ -1008,7 +1008,7 @@ + m2.str().

    - + Stream inserter

    @@ -1024,7 +1024,7 @@ -
    -
    -
    -
    -
    -
    -
    -
    -

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -323,13 +323,13 @@ cab elements the name col may be a symbolic name. A primary sort key is one that ignores case, accentation, or locale-specific tailorings; so for example [[=a=]] matches - any of the characters: a, À, Á, Â, Ã, Ä, Å, A, à, á, â, ã, ä and å. Unfortunately implementation + any of the characters: a, À, Á, Â, Ã, Ä, Å, A, à, á, â, ã, ä and å. Unfortunately implementation of this is reliant on the platform's collation and localisation support; this feature can not be relied upon to work portably across all platforms, or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1101,7 +1101,7 @@ cab
    - + What Gets Matched
    @@ -1111,11 +1111,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1136,7 +1136,7 @@ cab used with the -E option.

    - + awk

    @@ -1150,7 +1150,7 @@ cab these by default anyway.

    - + Options

    @@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    @@ -1184,7 +1184,7 @@ cab -

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -270,13 +270,13 @@ aaaa elements the name col may be a collating symbolic name. A primary sort key is one that ignores case, accentation, or locale-specific tailorings; so for example [[=a=]] matches - any of the characters: a, À, Á, Â, Ã, Ä, Å, A, à, á, â, ã, ä and å. Unfortunately implementation + any of the characters: a, À, Á, Â, Ã, Ä, Å, A, à, á, â, ã, ä and å. Unfortunately implementation of this is reliant on the platform's collation and localisation support; this feature can not be relied upon to work portably across all platforms, or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    @@ -646,7 +646,7 @@ aaaa -
    -
    -
    -
    -
    -
    -
    -
    -

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Pocessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -474,13 +474,13 @@ may be a symbolic name. A primary sort key is one that ignores case, accentation, or locale-specific tailorings; so for example [[=a=]] matches - any of the characters: a, À, Á, Â, Ã, Ä, Å, A, à, á, â, ã, ä and å. Unfortunately implementation + any of the characters: a, À, Á, Â, Ã, Ä, Å, A, à, á, â, ã, ä and å. Unfortunately implementation of this is reliant on the platform's collation and localisation support; this feature can not be relied upon to work portably across all platforms, or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1046,7 +1046,7 @@ to the regular expression \n*\z

    - + Continuation Escape
    @@ -1058,7 +1058,7 @@ one ended.

    - + Quoting escape

    @@ -1071,7 +1071,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1081,7 +1081,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1090,7 +1090,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1105,7 +1105,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1114,7 +1114,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1123,7 +1123,7 @@ (?.

    - + Named Subexpressions
    @@ -1145,14 +1145,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1166,7 +1166,7 @@ pattern only.

    - + Non-marking groups
    @@ -1175,7 +1175,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1197,7 +1197,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1220,7 +1220,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1234,7 +1234,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1247,7 +1247,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1271,7 +1271,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1319,7 +1319,7 @@
    - + Operator precedence
    @@ -1354,7 +1354,7 @@

    - + What gets matched

    @@ -1529,7 +1529,7 @@

    - + Variations

    @@ -1538,7 +1538,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1550,7 +1550,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1562,7 +1562,7 @@ and no_mod_s.

    - + References

    @@ -1571,7 +1571,7 @@ -
    - + Use a Unicode Aware Regular Expression Type.
    @@ -71,7 +71,7 @@ -
    - + Test Programs
    @@ -107,7 +107,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -133,7 +133,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index e430c9de..3c8c6047 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

    - + Boost 1.42
    @@ -48,6 +48,9 @@ Improved error reporting when throwing exceptions to include better more relevant information. +
  • + Improved performance and reduced stack usage of recursive expressions. +
  • Fixed tickets #2802, #3425, @@ -56,11 +59,13 @@ #3631, #3632, #3715, - #3718 + #3718, + #3763, + #3764
  • - + Boost 1.40
    @@ -69,7 +74,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -96,7 +101,7 @@
    - + Boost 1.34
    @@ -119,7 +124,7 @@
    - + Boost 1.33.1
    @@ -189,7 +194,7 @@
    - + Boost 1.33.0
    @@ -244,7 +249,7 @@
    - + Boost 1.32.1
    @@ -252,7 +257,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 50137229..c03b517e 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 569cebd0..44417a79 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -62,7 +62,7 @@ (??{code}) Not implementable in a compiled strongly typed language.

    - + POSIX

    @@ -82,7 +82,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index cb048500..59dc1a0c 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index ed34904d..b0b6515b 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 3415b200..606c4140 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -302,7 +302,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 29d38724..0d4746a4 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index 4df255a6..1b878b7b 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
      basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -727,7 +727,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -829,7 +829,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1043,7 +1043,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index bcd1870f..600d04b6 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -381,7 +381,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index b4582aa5..a98eb075 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 847abbec..d16c1e04 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 54c13e4e..5a6e7154 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index bb811b46..3187a735 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index d3b3f4e9..a98417b1 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index deeb7180..9a63c387 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 708ce212..752e4098 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 9a932c01..01c475e1 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 75ff2341..2b1434e2 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

    - + regcomp

    @@ -379,7 +379,7 @@

    - + regerror

    @@ -467,7 +467,7 @@

    - + regexec

    @@ -537,7 +537,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 4106df31..32a5cbbf 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -436,7 +436,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 49739dd2..3048db25 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -360,7 +360,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 023842dc..ada788cf 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -196,7 +196,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index e220f880..f5469be3 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -355,7 +355,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 221fa365..eac64d69 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -383,7 +383,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 13975b4d..8cd914a2 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 40d6dc4e..3561540d 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members

    @@ -473,7 +473,7 @@

    - + sub_match non-member operators
    @@ -1008,7 +1008,7 @@ + m2.str().

    - + Stream inserter

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 3283e7ca..430301c6 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab

    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1101,7 +1101,7 @@ cab
    - + What Gets Matched
    @@ -1111,11 +1111,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1136,7 +1136,7 @@ cab used with the -E option.

    - + awk

    @@ -1150,7 +1150,7 @@ cab these by default anyway.

    - + Options

    @@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 6a425a34..4897f70a 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index d8fe0ce2..02f4e208 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Pocessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@

    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1046,7 +1046,7 @@ to the regular expression \n*\z

    - + Continuation Escape
    @@ -1058,7 +1058,7 @@ one ended.

    - + Quoting escape

    @@ -1071,7 +1071,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1081,7 +1081,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1090,7 +1090,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1105,7 +1105,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1114,7 +1114,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1123,7 +1123,7 @@ (?.

    - + Named Subexpressions
    @@ -1145,14 +1145,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1166,7 +1166,7 @@ pattern only.

    - + Non-marking groups
    @@ -1175,7 +1175,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1197,7 +1197,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1220,7 +1220,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1234,7 +1234,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1247,7 +1247,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1271,7 +1271,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1319,7 +1319,7 @@
    - + Operator precedence
    @@ -1354,7 +1354,7 @@

    - + What gets matched

    @@ -1529,7 +1529,7 @@

    - + Variations

    @@ -1538,7 +1538,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1550,7 +1550,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1562,7 +1562,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 25441b93..e93b65a3 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index 64a7716c..eeef2e5c 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: December 05, 2009 at 12:09:47 GMT

    Last revised: December 28, 2009 at 12:23:25 GMT


    From 0e1e9804dab4a247a933bb1ebd393e7d5a596f54 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 5 Jan 2010 18:04:08 +0000 Subject: [PATCH 22/77] Fix bug that effects recursive expressions combined with repeats. [SVN r58722] --- .../boost/regex/v4/basic_regex_creator.hpp | 35 +++++++++++++++++++ include/boost/regex/v4/basic_regex_parser.hpp | 4 ++- include/boost/regex/v4/perl_matcher.hpp | 11 ++++-- .../regex/v4/perl_matcher_non_recursive.hpp | 5 +++ include/boost/regex/v4/states.hpp | 8 +++++ test/regress/test_perl_ex.cpp | 4 +++ 6 files changed, 63 insertions(+), 4 deletions(-) diff --git a/include/boost/regex/v4/basic_regex_creator.hpp b/include/boost/regex/v4/basic_regex_creator.hpp index 0782e456..ee207d08 100644 --- a/include/boost/regex/v4/basic_regex_creator.hpp +++ b/include/boost/regex/v4/basic_regex_creator.hpp @@ -811,8 +811,43 @@ void basic_regex_creator::fixup_recursions(re_syntax_base* state) { if((p->type == syntax_element_startmark) && (static_cast(p)->index == id)) { + // + // We've found the target of the recursion, set the jump target: + // static_cast(state)->alt.p = p; ok = true; + // + // Now scan the target for nested repeats: + // + p = p->next.p; + int next_rep_id = 0; + while(p) + { + switch(p->type) + { + case syntax_element_rep: + case syntax_element_dot_rep: + case syntax_element_char_rep: + case syntax_element_short_set_rep: + case syntax_element_long_set_rep: + next_rep_id = static_cast(p)->state_id; + break; + case syntax_element_endmark: + if(static_cast(p)->index == id) + next_rep_id = -1; + break; + default: + break; + } + if(next_rep_id) + break; + p = p->next.p; + } + if(next_rep_id > 0) + { + static_cast(state)->state_id = next_rep_id - 1; + } + break; } p = p->next.p; diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index c85ad9a5..3ea4d645 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -1939,7 +1939,9 @@ bool basic_regex_parser::parse_perl_extension() } insert_recursion: pb->index = markid = 0; - static_cast(this->append_state(syntax_element_recurse, sizeof(re_jump)))->alt.i = v; + re_recurse* pr = static_cast(this->append_state(syntax_element_recurse, sizeof(re_recurse))); + pr->alt.i = v; + pr->state_id = 0; static_cast( this->append_state(syntax_element_toggle_case, sizeof(re_case)) )->icase = this->flags() & regbase::icase; diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index 5bac21c0..52e0bcec 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -277,10 +277,15 @@ public: else { repeater_count* p = next; - while(p->state_id != state_id) + while(p && (p->state_id != state_id)) p = p->next; - count = p->count; - start_pos = p->start_pos; + if(p) + { + count = p->count; + start_pos = p->start_pos; + } + else + count = 0; } } ~repeater_count() diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index 343afc02..0fcd4548 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -904,10 +904,15 @@ bool perl_matcher::match_recursion() } recursion_stack[recursion_stack_position].preturn_address = pstate->next.p; recursion_stack[recursion_stack_position].results = *m_presult; + if(static_cast(pstate)->state_id > 0) + { + push_repeater_count(static_cast(pstate)->state_id, &next_count); + } pstate = static_cast(pstate)->alt.p; recursion_stack[recursion_stack_position].id = static_cast(pstate)->index; ++recursion_stack_position; //BOOST_ASSERT(recursion_stack[recursion_stack_position-1].id); + return true; } diff --git a/include/boost/regex/v4/states.hpp b/include/boost/regex/v4/states.hpp index efdebbe5..38690b22 100644 --- a/include/boost/regex/v4/states.hpp +++ b/include/boost/regex/v4/states.hpp @@ -248,6 +248,14 @@ struct re_repeat : public re_alt bool greedy; // True if this is a greedy repeat }; +/*** struct re_recurse ************************************************ +Recurse to a particular subexpression. +**********************************************************************/ +struct re_recurse : public re_jump +{ + int state_id; // identifier of first nested repeat within the recursion. +}; + /*** enum re_jump_size_type ******************************************* Provides compiled size of re_jump structure (allowing for trailing alignment). We provide this so we know how manybytes to insert when constructing the machine diff --git a/test/regress/test_perl_ex.cpp b/test/regress/test_perl_ex.cpp index 3c58fa42..d58da2a7 100644 --- a/test/regress/test_perl_ex.cpp +++ b/test/regress/test_perl_ex.cpp @@ -892,5 +892,9 @@ void test_recursion() TEST_REGEX_SEARCH("\\b(?&byte)(\\.(?&byte)){3}(?(DEFINE)(?2[0-4]\\d|25[0-5]|1\\d\\d|[1-9]?\\d))", perl|mod_x, "10.0.0.0", match_default, make_array(0, 8, 6, 8, -1, -1, -2, -2)); TEST_REGEX_SEARCH("\\b(?&byte)(\\.(?&byte)){3}(?(DEFINE)(?2[0-4]\\d|25[0-5]|1\\d\\d|[1-9]?\\d))", perl|mod_x, "10.6", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\b(?&byte)(\\.(?&byte)){3}(?(DEFINE)(?2[0-4]\\d|25[0-5]|1\\d\\d|[1-9]?\\d))", perl|mod_x, "455.3.4.5", match_default, make_array(-2, -2)); + + // Bugs: + TEST_REGEX_SEARCH("namespace\\s+(\\w+)\\s+(\\{(?:[^{}]*(?:(?2)[^{}]*)*)?\\})", perl, "namespace one { namespace two { int foo(); } }", match_default, make_array(0, 46, 10, 13, 14, 46, -2, -2)); + TEST_REGEX_SEARCH("namespace\\s+(\\w+)\\s+(\\{(?:[^{}]*(?:(?2)[^{}]*)*)?\\})", perl, "namespace one { namespace two { int foo(){} } { {{{ } } } } {}}", match_default, make_array(0, 64, 10, 13, 14, 64, -2, -2)); } From 4a826c1ade57e51999d2bd64abb9cf8027c9ccfb Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 7 Jan 2010 16:47:02 +0000 Subject: [PATCH 23/77] Speed up the code a little, and stop swapping stream buffers around in case that's the cause of some test failures. [SVN r58789] --- example/timer/regex_timer.cpp | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/example/timer/regex_timer.cpp b/example/timer/regex_timer.cpp index ad94e7ff..630eddd2 100644 --- a/example/timer/regex_timer.cpp +++ b/example/timer/regex_timer.cpp @@ -103,6 +103,7 @@ istream& getline(istream& is, std::string& s) char c = static_cast(is.get()); while(c != '\n') { + BOOST_ASSERT(is.good()); s.append(1, c); c = static_cast(is.get()); } @@ -123,16 +124,17 @@ istream& getline(istream& is, std::string& s) int main(int argc, char**argv) { ifstream ifs; - streambuf* pbuf = 0; + std::istream* p_in = &std::cin; if(argc == 2) { ifs.open(argv[1]); - if(ifs.bad()) + ifs.peek(); + if(!ifs.good()) { cout << "Bad filename: " << argv[1] << endl; return -1; } - pbuf = cin.rdbuf(ifs.rdbuf()); + p_in = &ifs; } boost::regex ex; @@ -152,12 +154,12 @@ int main(int argc, char**argv) double tim; int result = 0; unsigned iters = 100; - double wait_time = (std::min)(t.elapsed_min() * 1000, 1.0); + double wait_time = (std::min)(t.elapsed_min() * 1000, 0.5); while(true) { cout << "Enter expression (or \"quit\" to exit): "; - boost::getline(cin, s1); + boost::getline(*p_in, s1); if(argc == 2) cout << endl << s1 << endl; if(s1 == "quit") @@ -191,7 +193,7 @@ int main(int argc, char**argv) while(true) { cout << "Enter string to search (or \"quit\" to exit): "; - boost::getline(cin, s2); + boost::getline(*p_in, s2); if(argc == 2) cout << endl << s2 << endl; if(s2 == "quit") @@ -365,12 +367,6 @@ int main(int argc, char**argv) regfreeA(&r); } - if(pbuf) - { - cin.rdbuf(pbuf); - ifs.close(); - } - return 0; } From e1bd7c7a9b5727964bc6b7141d1d8daaa0760382 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 8 Jan 2010 11:59:23 +0000 Subject: [PATCH 24/77] Change name of extern "C" function so it's prefixed with "boost_" [SVN r58812] --- include/boost/regex/pending/static_mutex.hpp | 2 +- src/static_mutex.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/regex/pending/static_mutex.hpp b/include/boost/regex/pending/static_mutex.hpp index 218169c3..334ef27d 100644 --- a/include/boost/regex/pending/static_mutex.hpp +++ b/include/boost/regex/pending/static_mutex.hpp @@ -140,7 +140,7 @@ inline bool scoped_static_mutex_lock::locked()const namespace boost{ class BOOST_REGEX_DECL scoped_static_mutex_lock; -extern "C" BOOST_REGEX_DECL void free_static_mutex(); +extern "C" BOOST_REGEX_DECL void boost_regex_free_static_mutex(); class BOOST_REGEX_DECL static_mutex { diff --git a/src/static_mutex.cpp b/src/static_mutex.cpp index 040b52dd..d14feb1e 100644 --- a/src/static_mutex.cpp +++ b/src/static_mutex.cpp @@ -124,7 +124,7 @@ void scoped_static_mutex_lock::unlock() boost::recursive_mutex* static_mutex::m_pmutex = 0; boost::once_flag static_mutex::m_once = BOOST_ONCE_INIT; -extern "C" BOOST_REGEX_DECL void free_static_mutex() +extern "C" BOOST_REGEX_DECL void boost_regex_free_static_mutex() { delete static_mutex::m_pmutex; static_mutex::m_pmutex = 0; @@ -133,7 +133,7 @@ extern "C" BOOST_REGEX_DECL void free_static_mutex() void static_mutex::init() { m_pmutex = new boost::recursive_mutex(); - int r = atexit(free_static_mutex); + int r = atexit(boost_regex_free_static_mutex); BOOST_ASSERT(0 == r); } From c8e56504d993b07cb173574678961596037ae18c Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 27 Jan 2010 13:17:51 +0000 Subject: [PATCH 25/77] Suppress a few warnings. [SVN r59275] --- include/boost/regex/v4/basic_regex_creator.hpp | 2 +- include/boost/regex/v4/match_results.hpp | 2 +- include/boost/regex/v4/regex_format.hpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/boost/regex/v4/basic_regex_creator.hpp b/include/boost/regex/v4/basic_regex_creator.hpp index ee207d08..0909a836 100644 --- a/include/boost/regex/v4/basic_regex_creator.hpp +++ b/include/boost/regex/v4/basic_regex_creator.hpp @@ -804,7 +804,7 @@ void basic_regex_creator::fixup_recursions(re_syntax_base* state) { bool ok = false; re_syntax_base* p = base; - int id = static_cast(state)->alt.i; + std::ptrdiff_t id = static_cast(state)->alt.i; if(id > 10000) id = m_pdata->get_id(id); while(p) diff --git a/include/boost/regex/v4/match_results.hpp b/include/boost/regex/v4/match_results.hpp index cd6b9eb5..514dbad7 100644 --- a/include/boost/regex/v4/match_results.hpp +++ b/include/boost/regex/v4/match_results.hpp @@ -457,7 +457,7 @@ public: void BOOST_REGEX_CALL set_second(BidiIterator i, size_type pos, bool m = true, bool escape_k = false) { if(pos) - m_last_closed_paren = pos; + m_last_closed_paren = static_cast(pos); pos += 2; BOOST_ASSERT(m_subs.size() > pos); m_subs[pos].second = i; diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index 0ca9baa7..51fc62ae 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -334,7 +334,7 @@ void basic_regex_formatter::format m_position = --base; } } - put((this->m_results)[this->m_results.size() > 1 ? this->m_results.size() - 1 : 1]); + put((this->m_results)[this->m_results.size() > 1 ? static_cast(this->m_results.size() - 1) : 1]); break; case '{': have_brace = true; @@ -384,7 +384,7 @@ bool basic_regex_formatter::handle if(have_brace && (*m_position == '^')) ++m_position; - int max_len = m_end - m_position; + std::ptrdiff_t max_len = m_end - m_position; if((max_len >= 5) && std::equal(m_position, m_position + 5, MATCH)) { @@ -447,7 +447,7 @@ bool basic_regex_formatter::handle return false; } } - put((this->m_results)[this->m_results.size() > 1 ? this->m_results.size() - 1 : 1]); + put((this->m_results)[this->m_results.size() > 1 ? static_cast(this->m_results.size() - 1) : 1]); return true; } if((max_len >= 20) && std::equal(m_position, m_position + 20, LAST_SUBMATCH_RESULT)) From d686c89333ff35d14bf1b8fe6301cce2dfdb7b3f Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 1 Feb 2010 13:10:28 +0000 Subject: [PATCH 26/77] Improve regex performance on msvc by removing statically allocated recursion stack, and using a std::vector instead. [SVN r59414] --- include/boost/regex/v4/perl_matcher.hpp | 6 +-- .../boost/regex/v4/perl_matcher_common.hpp | 2 +- .../regex/v4/perl_matcher_non_recursive.hpp | 50 +++++++++-------- .../boost/regex/v4/perl_matcher_recursive.hpp | 53 ++++++++++--------- performance/command_line.cpp | 3 ++ 5 files changed, 63 insertions(+), 51 deletions(-) diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index 52e0bcec..190ff84e 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -366,7 +366,7 @@ public: BidiIterator l_base) : m_result(what), base(first), last(end), position(first), backstop(l_base), re(e), traits_inst(e.get_traits()), - m_independent(false), next_count(&rep_obj), rep_obj(&next_count), recursion_stack_position(0) + m_independent(false), next_count(&rep_obj), rep_obj(&next_count)/*, recursion_stack_position(0)*/ { construct_init(e, f); } @@ -488,8 +488,8 @@ private: // the bitmask to use when determining whether a match_any matches a newline or not: unsigned char match_any_mask; // recursion information: - recursion_info recursion_stack[50]; - unsigned recursion_stack_position; + std::vector > recursion_stack; + //unsigned recursion_stack_position; #ifdef BOOST_REGEX_NON_RECURSIVE // diff --git a/include/boost/regex/v4/perl_matcher_common.hpp b/include/boost/regex/v4/perl_matcher_common.hpp index fd439f84..1657d483 100644 --- a/include/boost/regex/v4/perl_matcher_common.hpp +++ b/include/boost/regex/v4/perl_matcher_common.hpp @@ -735,7 +735,7 @@ inline bool perl_matcher::match_assert_backref( int id = -index-1; if(id >= 10000) id = re.get_data().get_id(id); - result = recursion_stack_position && ((recursion_stack[recursion_stack_position-1].id == id) || (index == 0)); + result = !recursion_stack.empty() && ((recursion_stack.back().id == id) || (index == 0)); pstate = pstate->next.p; } return result; diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index 0fcd4548..a3bc61f8 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -898,19 +898,20 @@ bool perl_matcher::match_recursion() // // Set new call stack: // - if(recursion_stack_position >= static_cast(sizeof(recursion_stack)/sizeof(recursion_stack[0]))) + if(recursion_stack.capacity() == 0) { - return false; + recursion_stack.reserve(50); } - recursion_stack[recursion_stack_position].preturn_address = pstate->next.p; - recursion_stack[recursion_stack_position].results = *m_presult; + recursion_stack.push_back(recursion_info()); + recursion_stack.back().preturn_address = pstate->next.p; + recursion_stack.back().results = *m_presult; if(static_cast(pstate)->state_id > 0) { push_repeater_count(static_cast(pstate)->state_id, &next_count); } pstate = static_cast(pstate)->alt.p; - recursion_stack[recursion_stack_position].id = static_cast(pstate)->index; - ++recursion_stack_position; + recursion_stack.back().id = static_cast(pstate)->index; + //++recursion_stack_position; //BOOST_ASSERT(recursion_stack[recursion_stack_position-1].id); return true; @@ -927,14 +928,15 @@ bool perl_matcher::match_endmark() { m_presult->set_second(position, index); } - if(recursion_stack_position) + if(!recursion_stack.empty()) { - if(index == recursion_stack[recursion_stack_position-1].id) + if(index == recursion_stack.back().id) { - --recursion_stack_position; - pstate = recursion_stack[recursion_stack_position].preturn_address; - *m_presult = recursion_stack[recursion_stack_position].results; - push_recursion(recursion_stack[recursion_stack_position].id, recursion_stack[recursion_stack_position].preturn_address, &recursion_stack[recursion_stack_position].results); + //--recursion_stack_position; + pstate = recursion_stack.back().preturn_address; + *m_presult = recursion_stack.back().results; + push_recursion(recursion_stack.back().id, recursion_stack.back().preturn_address, &recursion_stack.back().results); + recursion_stack.pop_back(); } } } @@ -951,13 +953,14 @@ bool perl_matcher::match_endmark() template bool perl_matcher::match_match() { - if(recursion_stack_position) + if(!recursion_stack.empty()) { - BOOST_ASSERT(0 == recursion_stack[recursion_stack_position-1].id); - --recursion_stack_position; - pstate = recursion_stack[recursion_stack_position].preturn_address; - *m_presult = recursion_stack[recursion_stack_position].results; - push_recursion(recursion_stack[recursion_stack_position].id, recursion_stack[recursion_stack_position].preturn_address, &recursion_stack[recursion_stack_position].results); + BOOST_ASSERT(0 == recursion_stack.back().id); + //--recursion_stack_position; + pstate = recursion_stack.back().preturn_address; + *m_presult = recursion_stack.back().results; + push_recursion(recursion_stack.back().id, recursion_stack.back().preturn_address, &recursion_stack.back().results); + recursion_stack.pop_back(); return true; } if((m_match_flags & match_not_null) && (position == (*m_presult)[0].first)) @@ -1523,10 +1526,11 @@ bool perl_matcher::unwind_recursion(bool r) saved_recursion* pmp = static_cast*>(m_backup_state); if(!r) { - recursion_stack[recursion_stack_position].id = pmp->recursion_id; - recursion_stack[recursion_stack_position].preturn_address = pmp->preturn_address; - recursion_stack[recursion_stack_position].results = pmp->results; - ++recursion_stack_position; + recursion_stack.push_back(recursion_info()); + recursion_stack.back().id = pmp->recursion_id; + recursion_stack.back().preturn_address = pmp->preturn_address; + recursion_stack.back().results = pmp->results; + //++recursion_stack_position; } boost::re_detail::inplace_destroy(pmp++); m_backup_state = pmp; @@ -1539,7 +1543,7 @@ bool perl_matcher::unwind_recursion_pop(bool r) saved_state* pmp = static_cast(m_backup_state); if(!r) { - --recursion_stack_position; + recursion_stack.pop_back(); } boost::re_detail::inplace_destroy(pmp++); m_backup_state = pmp; diff --git a/include/boost/regex/v4/perl_matcher_recursive.hpp b/include/boost/regex/v4/perl_matcher_recursive.hpp index d0de8025..92bb2136 100644 --- a/include/boost/regex/v4/perl_matcher_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_recursive.hpp @@ -857,16 +857,17 @@ bool perl_matcher::match_recursion() // // Set new call stack: // - if(recursion_stack_position >= static_cast(sizeof(recursion_stack)/sizeof(recursion_stack[0]))) + if(recursion_stack.capacity() == 0) { - return false; + recursion_stack.reserve(50); } - recursion_stack[recursion_stack_position].preturn_address = pstate->next.p; - recursion_stack[recursion_stack_position].results = *m_presult; - recursion_stack[recursion_stack_position].repeater_stack = next_count; + recursion_stack.push_back(recursion_info()); + recursion_stack.back().preturn_address = pstate->next.p; + recursion_stack.back().results = *m_presult; + recursion_stack.back().repeater_stack = next_count; pstate = static_cast(pstate)->alt.p; - recursion_stack[recursion_stack_position].id = static_cast(pstate)->index; - ++recursion_stack_position; + recursion_stack.back().id = static_cast(pstate)->index; + //++recursion_stack_position; repeater_count* saved = next_count; repeater_count r(&next_count); // resets all repeat counts since we're recursing and starting fresh on those @@ -876,9 +877,10 @@ bool perl_matcher::match_recursion() if(!result) { - --recursion_stack_position; - next_count = recursion_stack[recursion_stack_position].repeater_stack; - *m_presult = recursion_stack[recursion_stack_position].results; + //--recursion_stack_position; + next_count = recursion_stack.back().repeater_stack; + *m_presult = recursion_stack.back().results; + recursion_stack.pop_back(); return false; } return true; @@ -895,20 +897,21 @@ bool perl_matcher::match_endmark() { m_presult->set_second(position, index); } - if(recursion_stack_position) + if(!recursion_stack.empty()) { - if(index == recursion_stack[recursion_stack_position-1].id) + if(index == recursion_stack.back().id) { - --recursion_stack_position; - recursion_info saved = recursion_stack[recursion_stack_position]; + //--recursion_stack_position; + recursion_info saved = recursion_stack.back(); + recursion_stack.pop_back(); const re_syntax_base* saved_state = pstate = saved.preturn_address; repeater_count* saved_count = next_count; next_count = saved.repeater_stack; *m_presult = saved.results; if(!match_all_states()) { - recursion_stack[recursion_stack_position] = saved; - ++recursion_stack_position; + recursion_stack.push_back(saved); + //++recursion_stack_position; next_count = saved_count; return false; } @@ -928,17 +931,19 @@ bool perl_matcher::match_endmark() template bool perl_matcher::match_match() { - if(recursion_stack_position) + if(!recursion_stack.empty()) { - BOOST_ASSERT(0 == recursion_stack[recursion_stack_position-1].id); - --recursion_stack_position; - const re_syntax_base* saved_state = pstate = recursion_stack[recursion_stack_position].preturn_address; - *m_presult = recursion_stack[recursion_stack_position].results; + BOOST_ASSERT(0 == recursion_stack.back().id); + //--recursion_stack_position; + const re_syntax_base* saved_state = pstate = recursion_stack.back().preturn_address; + *m_presult = recursion_stack.back().results; + recursion_stack.pop_back(); if(!match_all_states()) { - recursion_stack[recursion_stack_position].preturn_address = saved_state; - recursion_stack[recursion_stack_position].results = *m_presult; - ++recursion_stack_position; + recursion_stack.push_back(recursion_info()); + recursion_stack.back().preturn_address = saved_state; + recursion_stack.back().results = *m_presult; + //++recursion_stack_position; return false; } return true; diff --git a/performance/command_line.cpp b/performance/command_line.cpp index 114dceba..7c7a5a68 100644 --- a/performance/command_line.cpp +++ b/performance/command_line.cpp @@ -100,6 +100,9 @@ int handle_argument(const std::string& what) #endif #ifdef BOOST_HAS_PCRE time_pcre = true; +#endif +#ifdef BOOST_HAS_XPRESSIVE + time_xpressive = true; #endif } else if(what == "-test-matches") From 50892585d3f7fd0d1f66ecbbfe7a8a8205735f5d Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 1 Feb 2010 13:12:50 +0000 Subject: [PATCH 27/77] Remove dead code. [SVN r59415] --- include/boost/regex/v4/perl_matcher.hpp | 3 +-- include/boost/regex/v4/perl_matcher_non_recursive.hpp | 5 ----- include/boost/regex/v4/perl_matcher_recursive.hpp | 6 ------ 3 files changed, 1 insertion(+), 13 deletions(-) diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index 190ff84e..3f0e57de 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -366,7 +366,7 @@ public: BidiIterator l_base) : m_result(what), base(first), last(end), position(first), backstop(l_base), re(e), traits_inst(e.get_traits()), - m_independent(false), next_count(&rep_obj), rep_obj(&next_count)/*, recursion_stack_position(0)*/ + m_independent(false), next_count(&rep_obj), rep_obj(&next_count) { construct_init(e, f); } @@ -489,7 +489,6 @@ private: unsigned char match_any_mask; // recursion information: std::vector > recursion_stack; - //unsigned recursion_stack_position; #ifdef BOOST_REGEX_NON_RECURSIVE // diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index a3bc61f8..b62a42b2 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -911,8 +911,6 @@ bool perl_matcher::match_recursion() } pstate = static_cast(pstate)->alt.p; recursion_stack.back().id = static_cast(pstate)->index; - //++recursion_stack_position; - //BOOST_ASSERT(recursion_stack[recursion_stack_position-1].id); return true; } @@ -932,7 +930,6 @@ bool perl_matcher::match_endmark() { if(index == recursion_stack.back().id) { - //--recursion_stack_position; pstate = recursion_stack.back().preturn_address; *m_presult = recursion_stack.back().results; push_recursion(recursion_stack.back().id, recursion_stack.back().preturn_address, &recursion_stack.back().results); @@ -956,7 +953,6 @@ bool perl_matcher::match_match() if(!recursion_stack.empty()) { BOOST_ASSERT(0 == recursion_stack.back().id); - //--recursion_stack_position; pstate = recursion_stack.back().preturn_address; *m_presult = recursion_stack.back().results; push_recursion(recursion_stack.back().id, recursion_stack.back().preturn_address, &recursion_stack.back().results); @@ -1530,7 +1526,6 @@ bool perl_matcher::unwind_recursion(bool r) recursion_stack.back().id = pmp->recursion_id; recursion_stack.back().preturn_address = pmp->preturn_address; recursion_stack.back().results = pmp->results; - //++recursion_stack_position; } boost::re_detail::inplace_destroy(pmp++); m_backup_state = pmp; diff --git a/include/boost/regex/v4/perl_matcher_recursive.hpp b/include/boost/regex/v4/perl_matcher_recursive.hpp index 92bb2136..7436fa6c 100644 --- a/include/boost/regex/v4/perl_matcher_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_recursive.hpp @@ -867,7 +867,6 @@ bool perl_matcher::match_recursion() recursion_stack.back().repeater_stack = next_count; pstate = static_cast(pstate)->alt.p; recursion_stack.back().id = static_cast(pstate)->index; - //++recursion_stack_position; repeater_count* saved = next_count; repeater_count r(&next_count); // resets all repeat counts since we're recursing and starting fresh on those @@ -877,7 +876,6 @@ bool perl_matcher::match_recursion() if(!result) { - //--recursion_stack_position; next_count = recursion_stack.back().repeater_stack; *m_presult = recursion_stack.back().results; recursion_stack.pop_back(); @@ -901,7 +899,6 @@ bool perl_matcher::match_endmark() { if(index == recursion_stack.back().id) { - //--recursion_stack_position; recursion_info saved = recursion_stack.back(); recursion_stack.pop_back(); const re_syntax_base* saved_state = pstate = saved.preturn_address; @@ -911,7 +908,6 @@ bool perl_matcher::match_endmark() if(!match_all_states()) { recursion_stack.push_back(saved); - //++recursion_stack_position; next_count = saved_count; return false; } @@ -934,7 +930,6 @@ bool perl_matcher::match_match() if(!recursion_stack.empty()) { BOOST_ASSERT(0 == recursion_stack.back().id); - //--recursion_stack_position; const re_syntax_base* saved_state = pstate = recursion_stack.back().preturn_address; *m_presult = recursion_stack.back().results; recursion_stack.pop_back(); @@ -943,7 +938,6 @@ bool perl_matcher::match_match() recursion_stack.push_back(recursion_info()); recursion_stack.back().preturn_address = saved_state; recursion_stack.back().results = *m_presult; - //++recursion_stack_position; return false; } return true; From f9db065c618da2542a467428327df8c21e5f61fa Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 2 Feb 2010 12:44:32 +0000 Subject: [PATCH 28/77] Fix typos in docs. Fixes #3890. [SVN r59425] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 16 +-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 +-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 +-- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 +++++------ doc/html/boost_regex/syntax/basic_syntax.html | 44 ++++---- doc/html/boost_regex/syntax/perl_syntax.html | 104 +++++++++--------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/syntax_perl.qbk | 4 +- 32 files changed, 198 insertions(+), 198 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index bda8603a..4da4fce8 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -107,7 +107,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -133,7 +133,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 3c8c6047..cfc28e98 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

    - + Boost 1.42
    @@ -65,7 +65,7 @@
    - + Boost 1.40
    @@ -74,7 +74,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -101,7 +101,7 @@
    - + Boost 1.34
    @@ -124,7 +124,7 @@
    - + Boost 1.33.1
    @@ -194,7 +194,7 @@
    - + Boost 1.33.0
    @@ -249,7 +249,7 @@
    - + Boost 1.32.1
    @@ -257,7 +257,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index c03b517e..ac999bd0 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 44417a79..24c63028 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -62,7 +62,7 @@ (??{code}) Not implementable in a compiled strongly typed language.

    - + POSIX

    @@ -82,7 +82,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 59dc1a0c..280e8c7d 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index b0b6515b..469a0ca1 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 606c4140..36ea2f56 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -302,7 +302,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 0d4746a4..2d79967a 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index 1b878b7b..8bf87f1e 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
      basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -727,7 +727,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -829,7 +829,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1043,7 +1043,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 600d04b6..ab5b766d 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -381,7 +381,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index a98eb075..54939885 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index d16c1e04..4450e739 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 5a6e7154..570d6ccf 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 3187a735..ce54122d 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index a98417b1..3d4b69d7 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 9a63c387..7f8b56d3 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 752e4098..cb5c3dee 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 01c475e1..a150a7cd 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 2b1434e2..810e6186 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

    - + regcomp

    @@ -379,7 +379,7 @@

    - + regerror

    @@ -467,7 +467,7 @@

    - + regexec

    @@ -537,7 +537,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 32a5cbbf..7613f5c4 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -436,7 +436,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 3048db25..4263aa0d 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -360,7 +360,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index ada788cf..3eb13332 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -196,7 +196,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index f5469be3..bfa96b61 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -355,7 +355,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index eac64d69..206a01c9 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -383,7 +383,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 8cd914a2..2772ccad 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 3561540d..cf7de35c 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members

    @@ -473,7 +473,7 @@

    - + sub_match non-member operators
    @@ -1008,7 +1008,7 @@ + m2.str().

    - + Stream inserter

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 430301c6..ed68000b 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab

    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1101,7 +1101,7 @@ cab
    - + What Gets Matched
    @@ -1111,11 +1111,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1136,7 +1136,7 @@ cab used with the -E option.

    - + awk

    @@ -1150,7 +1150,7 @@ cab these by default anyway.

    - + Options

    @@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 4897f70a..02e92704 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 02f4e208..54f06c6d 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,16 +218,16 @@ while consuming as little input as possible.

    - + Pocessive repeats

    - By default when a repeated patten does not match then the engine will backtrack + By default when a repeated pattern does not match then the engine will backtrack until a match is found. However, this behaviour can sometime be undesireable - so there are also "pocessive" repeats: these match as much as possible - and do not then allow backtracking if the rest of the expression fails to - match. + so there are also "possessive" repeats: these match as much as + possible and do not then allow backtracking if the rest of the expression + fails to match.

    *+ Matches the previous atom zero or more times, while @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1046,7 +1046,7 @@ to the regular expression \n*\z

    - + Continuation Escape
    @@ -1058,7 +1058,7 @@ one ended.

    - + Quoting escape

    @@ -1071,7 +1071,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1081,7 +1081,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1090,7 +1090,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1105,7 +1105,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1114,7 +1114,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1123,7 +1123,7 @@ (?.

    - + Named Subexpressions
    @@ -1145,14 +1145,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1166,7 +1166,7 @@ pattern only.

    - + Non-marking groups
    @@ -1175,7 +1175,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1197,7 +1197,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1220,7 +1220,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1234,7 +1234,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1247,7 +1247,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1271,7 +1271,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1319,7 +1319,7 @@
    - + Operator precedence
    @@ -1354,7 +1354,7 @@

    - + What gets matched

    @@ -1529,7 +1529,7 @@

    - + Variations

    @@ -1538,7 +1538,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1550,7 +1550,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1562,7 +1562,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index e93b65a3..24c37936 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index eeef2e5c..2549c715 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: December 28, 2009 at 12:23:25 GMT

    Last revised: February 02, 2010 at 12:23:46 GMT


    diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index 716df83c..d5aafa8c 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -145,9 +145,9 @@ consume as little input as possible while still producing a match. [h4 Pocessive repeats] -By default when a repeated patten does not match then the engine will backtrack until +By default when a repeated pattern does not match then the engine will backtrack until a match is found. However, this behaviour can sometime be undesireable so there are -also "pocessive" repeats: these match as much as possible and do not then allow +also "possessive" repeats: these match as much as possible and do not then allow backtracking if the rest of the expression fails to match. =*+= Matches the previous atom zero or more times, while giving nothing back. From 446604c734667246da40e0694d75b34311847707 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 5 Feb 2010 17:05:04 +0000 Subject: [PATCH 29/77] Highlight the differences between \Z in Boost and Perl. Regenerate docs. Fixes #3899. [SVN r59512] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 16 +-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 21 +++- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 +-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 +-- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 +++++------ doc/html/boost_regex/syntax/basic_syntax.html | 44 ++++---- doc/html/boost_regex/syntax/perl_syntax.html | 106 +++++++++--------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/standards.qbk | 7 ++ doc/syntax_perl.qbk | 9 +- 33 files changed, 221 insertions(+), 200 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 4da4fce8..ccb5bb96 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -107,7 +107,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -133,7 +133,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index cfc28e98..2e6b72a3 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

    - + Boost 1.42
    @@ -65,7 +65,7 @@
    - + Boost 1.40
    @@ -74,7 +74,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -101,7 +101,7 @@
    - + Boost 1.34
    @@ -124,7 +124,7 @@
    - + Boost 1.33.1
    @@ -194,7 +194,7 @@
    - + Boost 1.33.0
    @@ -249,7 +249,7 @@
    - + Boost 1.32.1
    @@ -257,7 +257,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index ac999bd0..8302d908 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 24c63028..30df7010 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -61,8 +61,19 @@

    (??{code}) Not implementable in a compiled strongly typed language.

    +

    + (*VERB) The backtracking + control verbs are not recognised or implemented at this time. +

    +

    + In addition the following features behave slightly differently from Perl: +

    +

    + ^ $ \Z These recognise any line termination sequence, and not just \n: see + the Unicode requirements below. +

    - + POSIX

    @@ -82,7 +93,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 280e8c7d..088b8072 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 469a0ca1..fa344262 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 36ea2f56..73d67dbf 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -302,7 +302,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 2d79967a..90b2416b 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index 8bf87f1e..49e82201 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
      basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -727,7 +727,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -829,7 +829,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1043,7 +1043,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index ab5b766d..54c6be56 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -381,7 +381,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index 54939885..5c27b8f0 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 4450e739..3eb45ad7 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 570d6ccf..49232a3c 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index ce54122d..c7ae5aaa 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 3d4b69d7..0a2656af 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 7f8b56d3..cb2d39f8 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index cb5c3dee..9500e1bf 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index a150a7cd..241f62e6 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 810e6186..80eb6d3d 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

    - + regcomp

    @@ -379,7 +379,7 @@

    - + regerror

    @@ -467,7 +467,7 @@

    - + regexec

    @@ -537,7 +537,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 7613f5c4..4e296925 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -436,7 +436,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 4263aa0d..7433add6 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -360,7 +360,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 3eb13332..b2b4aad8 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -196,7 +196,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index bfa96b61..54231840 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -355,7 +355,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 206a01c9..871a4ffd 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -383,7 +383,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 2772ccad..413f79a2 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index cf7de35c..96215727 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members

    @@ -473,7 +473,7 @@

    - + sub_match non-member operators
    @@ -1008,7 +1008,7 @@ + m2.str().

    - + Stream inserter

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index ed68000b..8e6e9660 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1101,7 +1101,7 @@ cab
    - + What Gets Matched
    @@ -1111,11 +1111,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1136,7 +1136,7 @@ cab used with the -E option.

    - + awk

    @@ -1150,7 +1150,7 @@ cab these by default anyway.

    - + Options

    @@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 02e92704..8ecc6e72 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 54f06c6d..642085da 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Pocessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1036,17 +1036,19 @@ \' Matches at the end of a buffer only.

    - \A Matches at the start of a buffer only (the same as \`). + \A Matches at the start of a buffer only (the same as \\\`).

    - \z Matches at the end of a buffer only (the same as \'). + \z Matches at the end of a buffer only (the same as \\').

    - \Z Matches an optional sequence of newlines at the end of a buffer: equivalent - to the regular expression \n*\z + \Z Matches a zero-width assertion consisting of an optional sequence of newlines + at the end of a buffer: equivalent to the regular expression (?=\v*\z). + Note that this is subtly different from Perl which behaves as if matching + (?=\n?\z).

    - + Continuation Escape
    @@ -1058,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1071,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1081,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1090,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1105,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1114,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1123,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1145,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1166,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1175,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1197,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1220,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1234,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1247,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1271,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1319,7 +1321,7 @@
    - + Operator precedence
    @@ -1354,7 +1356,7 @@

    - + What gets matched

    @@ -1529,7 +1531,7 @@

    - + Variations

    @@ -1538,7 +1540,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1550,7 +1552,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1562,7 +1564,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 24c37936..6c01a369 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index 2549c715..f846b391 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: February 02, 2010 at 12:23:46 GMT

    Last revised: February 05, 2010 at 17:00:10 GMT


    diff --git a/doc/standards.qbk b/doc/standards.qbk index 8467e52a..bfb803b1 100644 --- a/doc/standards.qbk +++ b/doc/standards.qbk @@ -27,6 +27,13 @@ Almost all Perl features are supported, except for: (??{code}) Not implementable in a compiled strongly typed language. +(*VERB) The [@http://perldoc.perl.org/perlre.html#Special-Backtracking-Control-Verbs +backtracking control verbs] are not recognised or implemented at this time. + +In addition the following features behave slightly differently from Perl: + +^ $ \Z These recognise any line termination sequence, and not just \\n: see the Unicode requirements below. + [h4 POSIX] All the POSIX basic and extended regular expression features are supported, diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index d5aafa8c..5fabfbdf 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -376,12 +376,13 @@ context is the whole of the input text that is being matched against \\' Matches at the end of a buffer only. -\\A Matches at the start of a buffer only (the same as \\\`). +\\A Matches at the start of a buffer only (the same as =\\\`=). -\\z Matches at the end of a buffer only (the same as \\'). +\\z Matches at the end of a buffer only (the same as =\\'=). -\\Z Matches an optional sequence of newlines at the end of a buffer: -equivalent to the regular expression =\n*\z= +\\Z Matches a zero-width assertion consisting of an optional sequence of newlines at the end of a buffer: +equivalent to the regular expression [^(?=\\v*\\z)]. Note that this is subtly different from Perl which +behaves as if matching [^(?=\\n?\\z)]. [h5 Continuation Escape] From 67f5369cae0fcd02b39779a1484f2c4f56239a50 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 17 Mar 2010 18:20:09 +0000 Subject: [PATCH 30/77] Add support for Boost.Ref in match_results::format. Update docs accordingly. Fixes #4020. [SVN r60678] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 16 +- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 +- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 +- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 11 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 9 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 +++--- doc/html/boost_regex/syntax/basic_syntax.html | 44 ++-- doc/html/boost_regex/syntax/perl_syntax.html | 96 ++++----- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/match_result.qbk | 7 +- doc/regex_replace.qbk | 5 +- include/boost/regex/concepts.hpp | 203 ++++++++++++++---- include/boost/regex/v4/perl_matcher.hpp | 4 +- .../boost/regex/v4/perl_matcher_common.hpp | 22 +- include/boost/regex/v4/regex_format.hpp | 9 +- 37 files changed, 391 insertions(+), 255 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index ccb5bb96..ce903688 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -107,7 +107,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -133,7 +133,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 2e6b72a3..e501b8c9 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

    - + Boost 1.42
    @@ -65,7 +65,7 @@
    - + Boost 1.40
    @@ -74,7 +74,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -101,7 +101,7 @@
    - + Boost 1.34
    @@ -124,7 +124,7 @@
    - + Boost 1.33.1
    @@ -194,7 +194,7 @@
    - + Boost 1.33.0
    @@ -249,7 +249,7 @@
    - + Boost 1.32.1
    @@ -257,7 +257,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 8302d908..4b8f962c 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 30df7010..17ce4aca 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -73,7 +73,7 @@ the Unicode requirements below.

    - + POSIX

    @@ -93,7 +93,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 088b8072..7406acec 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index fa344262..b017ac87 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 73d67dbf..d3e3325e 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -302,7 +302,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 90b2416b..c05df79a 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index 49e82201..a0ab9a47 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
      basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -727,7 +727,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -829,7 +829,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1043,7 +1043,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 54c6be56..61571515 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -381,7 +381,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index 5c27b8f0..e0aa3d8b 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 3eb45ad7..2661dae8 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 49232a3c..58e7eb12 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index c7ae5aaa..63a5ac15 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    @@ -579,7 +579,10 @@ out) or fmt(*this, out, flags), both of which write the replacement text to *out, - and then return the new OutputIterator position. + and then return the new OutputIterator position. Note that if the formatter + is a functor, then it is passed by value: users that + want to pass function objects with internal state might want to use Boost.Ref to wrap the object + so that it's passed by reference.

    Effects: If fmt @@ -601,7 +604,7 @@

    • Call fmt(*this) and - copy the result to OutputIteratorout. + copy the string returned to OutputIteratorout.
    • Call fmt(*this, out). diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 0a2656af..81c8e7cd 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

      - + u32regex_match

      @@ -89,7 +89,7 @@ }

      - + u32regex_search

      @@ -128,7 +128,7 @@ }

      - + u32regex_replace

      diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index cb2d39f8..32e20a8d 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 9500e1bf..805adf6c 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 241f62e6..cedd2580 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 80eb6d3d..4117a6f7 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

    - + regcomp

    @@ -379,7 +379,7 @@

    - + regerror

    @@ -467,7 +467,7 @@

    - + regexec

    @@ -537,7 +537,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 4e296925..25b27409 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -436,7 +436,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 7433add6..92e54980 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -360,7 +360,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index b2b4aad8..a3a8e7bb 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -101,7 +101,10 @@
             or fmt(what, out, flags), both of which write the replacement text
             to *out,
             and then return the new OutputIterator position. In each case what is the match_results object that represents
    -        the match found.
    +        the match found. Note that if the formatter is a functor, then it is passed
    +        by value: users that want to pass function objects with internal
    +        state might want to use Boost.Ref
    +        to wrap the object so that it's passed by reference.
           

    Effects: Constructs an regex_iterator object: @@ -196,7 +199,7 @@ and then returns result.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 54231840..36edb25d 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -355,7 +355,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 871a4ffd..a2af4f26 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -383,7 +383,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 413f79a2..7e3c06b6 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 96215727..cc49dc1a 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members

    @@ -473,7 +473,7 @@

    - + sub_match non-member operators
    @@ -1008,7 +1008,7 @@ + m2.str().

    - + Stream inserter

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 8e6e9660..97b80722 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab

    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1101,7 +1101,7 @@ cab
    - + What Gets Matched
    @@ -1111,11 +1111,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1136,7 +1136,7 @@ cab used with the -E option.

    - + awk

    @@ -1150,7 +1150,7 @@ cab these by default anyway.

    - + Options

    @@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 8ecc6e72..ff4e7d54 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 642085da..1b68cffe 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Pocessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1048,7 +1048,7 @@ (?=\n?\z).

    - + Continuation Escape
    @@ -1060,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1073,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1125,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1168,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1177,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1222,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1249,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1321,7 +1321,7 @@
    - + Operator precedence
    @@ -1356,7 +1356,7 @@

    - + What gets matched

    @@ -1531,7 +1531,7 @@

    - + Variations

    @@ -1540,7 +1540,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1552,7 +1552,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1564,7 +1564,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 6c01a369..978001d7 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index f846b391..c4f7fee0 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: February 05, 2010 at 17:00:10 GMT

    Last revised: March 17, 2010 at 16:59:52 GMT


    diff --git a/doc/match_result.qbk b/doc/match_result.qbk index 680f868f..4238de92 100644 --- a/doc/match_result.qbk +++ b/doc/match_result.qbk @@ -368,7 +368,10 @@ that computes the replacement string from a function call: either `fmt(*this)` which must return a container of `char_type`'s to be used as the replacement text, or either `fmt(*this, out)` or `fmt(*this, out, flags)`, both of which write the replacement text to `*out`, and then return the new -OutputIterator position. +OutputIterator position. Note that if the formatter is a functor, then it is +['passed by value]: users that want to pass function objects with internal state +might want to use [@../../../../doc/html/ref.html Boost.Ref] to wrap the object so +that it's passed by reference. [*Effects]: If `fmt` is either a null-terminated string, or a container of `char_type`'s, then copies the character sequence `[fmt.begin(), fmt.end())` to @@ -383,7 +386,7 @@ ECMA-262, ECMAScript Language Specification, Chapter 15 part If `fmt` is a function object, then depending on the number of arguments the function object accepts, it will either: -* Call `fmt(*this)` and copy the result to `OutputIterator` +* Call `fmt(*this)` and copy the string returned to `OutputIterator` /out/. * Call `fmt(*this, out)`. * Call `fmt(*this, out, flags)`. diff --git a/doc/regex_replace.qbk b/doc/regex_replace.qbk index 58f88778..43e0760f 100644 --- a/doc/regex_replace.qbk +++ b/doc/regex_replace.qbk @@ -69,7 +69,10 @@ that computes the replacement string from a function call: either replacement text, or either `fmt(what, out)` or `fmt(what, out, flags)`, both of which write the replacement text to `*out`, and then return the new OutputIterator position. In each case `what` is the [match_results] object -that represents the match found. +that represents the match found. Note that if the formatter is a functor, then it is +['passed by value]: users that want to pass function objects with internal state +might want to use [@../../../../doc/html/ref.html Boost.Ref] to wrap the object so +that it's passed by reference. [*Effects]: Constructs an [regex_iterator] object: diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index fa2ea48c..28d5aeb6 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -76,6 +76,46 @@ namespace std{ typedef boost::char_architype char_type; }; } +// +// Allocator architype: +// +template +class allocator_architype +{ +public: + typedef T* pointer; + typedef const T* const_pointer; + typedef T& reference; + typedef const T& const_reference; + typedef T value_type; + typedef unsigned size_type; + typedef int difference_type; + + template + struct rebind + { + typedef allocator_architype other; + }; + + pointer address(reference r); + const_pointer address(const_reference r); + pointer allocate(size_type); + pointer allocate(size_type, pointer); + void deallocate(pointer, size_type); + size_type max_size()const; + + allocator_architype(); + allocator_architype(const allocator_architype&); + + void construct(pointer, const_reference); + void destroy(pointer); +}; + +template +bool operator == (const allocator_architype&, const allocator_architype&); +template +bool operator != (const allocator_architype&, const allocator_architype&); + namespace boost{ // // regex_traits_architype: @@ -244,7 +284,8 @@ struct BaseRegexConcept typedef const value_type* pointer_type; typedef bidirectional_iterator_archetype BidiIterator; typedef global_regex_namespace::sub_match sub_match_type; - typedef global_regex_namespace::match_results match_results_type; + typedef global_regex_namespace::match_results > match_results_type; + typedef global_regex_namespace::match_results match_results_default_type; typedef output_iterator_archetype OutIterator; typedef typename regex_traits_computer::type traits_type; typedef global_regex_namespace::regex_iterator regex_iterator_type; @@ -318,7 +359,7 @@ struct BaseRegexConcept const global_regex_namespace::regex_error except(e1); e1 = except.code(); - typedef typename Regex::value_type value_type; + typedef typename Regex::value_type regex_value_type; function_requires< RegexTraitsConcept > >(); function_requires< BaseRegexConcept > >(); } @@ -484,10 +525,10 @@ struct BaseRegexConcept typedef typename regex_iterator_type::reference rit_reference; typedef typename regex_iterator_type::iterator_category rit_iterator_category; BOOST_STATIC_ASSERT((::boost::is_same::value)); - BOOST_STATIC_ASSERT((::boost::is_same::value)); + BOOST_STATIC_ASSERT((::boost::is_same::value)); BOOST_STATIC_ASSERT((::boost::is_same::value)); - BOOST_STATIC_ASSERT((::boost::is_same::value)); - BOOST_STATIC_ASSERT((::boost::is_same::value)); + BOOST_STATIC_ASSERT((::boost::is_same::value)); + BOOST_STATIC_ASSERT((::boost::is_same::value)); BOOST_STATIC_ASSERT((::boost::is_convertible::value)); // this takes care of most of the checks needed: function_requires >(); @@ -540,7 +581,10 @@ struct BaseRegexConcept OutIterator m_out; BidiIterator m_in; global_regex_namespace::regex_constants::match_flag_type m_mft; - global_regex_namespace::match_results m_pmatch; + global_regex_namespace::match_results< + pointer_type, + allocator_architype > > + m_pmatch; BaseRegexConcept(); BaseRegexConcept(const BaseRegexConcept&); @@ -564,7 +608,7 @@ struct RegexConcept typedef std::basic_string string_type; typedef boost::bidirectional_iterator_archetype BidiIterator; typedef global_regex_namespace::sub_match sub_match_type; - typedef global_regex_namespace::match_results match_results_type; + typedef global_regex_namespace::match_results > match_results_type; typedef output_iterator_archetype OutIterator; @@ -739,7 +783,7 @@ struct RegexConcept OutIterator m_out; BidiIterator m_in; global_regex_namespace::regex_constants::match_flag_type m_mft; - global_regex_namespace::match_results m_smatch; + global_regex_namespace::match_results > > m_smatch; RegexConcept(); RegexConcept(const RegexConcept&); @@ -752,7 +796,7 @@ template struct functor1 { typedef typename M::char_type char_type; - const char_type* operator()(const M&) + const char_type* operator()(const M&)const { static const char_type c = static_cast(0); return &c; @@ -762,7 +806,7 @@ template struct functor1b { typedef typename M::char_type char_type; - std::vector operator()(const M&) + std::vector operator()(const M&)const { static const std::vector c; return c; @@ -772,7 +816,7 @@ template struct functor2 { template - O operator()(const M& /*m*/, O i) + O operator()(const M& /*m*/, O i)const { return i; } @@ -781,7 +825,7 @@ template struct functor3 { template - O operator()(const M& /*m*/, O i, regex_constants::match_flag_type) + O operator()(const M& /*m*/, O i, regex_constants::match_flag_type)const { return i; } @@ -806,7 +850,8 @@ struct BoostRegexConcept typedef bidirectional_iterator_archetype BidiIterator; typedef output_iterator_archetype OutputIterator; typedef global_regex_namespace::sub_match sub_match_type; - typedef global_regex_namespace::match_results match_results_type; + typedef global_regex_namespace::match_results > match_results_type; + typedef global_regex_namespace::match_results match_results_default_type; void constraints() { @@ -930,36 +975,90 @@ struct BoostRegexConcept // regex_constants::match_flag_type f = regex_constants::match_default; OutputIterator out = static_object::get(); - functor3 func3; - out = regex_format(out, m_cresults, func3, f); - out = regex_format(out, m_cresults, func3); - functor2 func2; - out = regex_format(out, m_cresults, func2, f); - out = regex_format(out, m_cresults, func2); - functor1 func1; - out = regex_format(out, m_cresults, func1, f); - out = regex_format(out, m_cresults, func1); + + functor3 func3; + functor2 func2; + functor1 func1; + + functor3 func3b; + functor2 func2b; + functor1 func1b; - m_string += regex_format(m_cresults, func3, f); - m_string += regex_format(m_cresults, func3); - m_string += regex_format(m_cresults, func2, f); - m_string += regex_format(m_cresults, func2); - m_string += regex_format(m_cresults, func1, f); - m_string += regex_format(m_cresults, func1); + out = regex_format(out, m_cresults, func3b, f); + out = regex_format(out, m_cresults, func3b); + out = regex_format(out, m_cresults, func2b, f); + out = regex_format(out, m_cresults, func2b); + out = regex_format(out, m_cresults, func1b, f); + out = regex_format(out, m_cresults, func1b); + out = regex_format(out, m_cresults, ref(func3b), f); + out = regex_format(out, m_cresults, ref(func3b)); + out = regex_format(out, m_cresults, ref(func2b), f); + out = regex_format(out, m_cresults, ref(func2b)); + out = regex_format(out, m_cresults, ref(func1b), f); + out = regex_format(out, m_cresults, ref(func1b)); + out = regex_format(out, m_cresults, cref(func3b), f); + out = regex_format(out, m_cresults, cref(func3b)); + out = regex_format(out, m_cresults, cref(func2b), f); + out = regex_format(out, m_cresults, cref(func2b)); + out = regex_format(out, m_cresults, cref(func1b), f); + out = regex_format(out, m_cresults, cref(func1b)); - out = m_cresults.format(out, func3, f); - out = m_cresults.format(out, func3); - out = m_cresults.format(out, func2, f); - out = m_cresults.format(out, func2); - out = m_cresults.format(out, func1, f); - out = m_cresults.format(out, func1); + m_string += regex_format(m_cresults, func3b, f); + m_string += regex_format(m_cresults, func3b); + m_string += regex_format(m_cresults, func2b, f); + m_string += regex_format(m_cresults, func2b); + m_string += regex_format(m_cresults, func1b, f); + m_string += regex_format(m_cresults, func1b); + m_string += regex_format(m_cresults, ref(func3b), f); + m_string += regex_format(m_cresults, ref(func3b)); + m_string += regex_format(m_cresults, ref(func2b), f); + m_string += regex_format(m_cresults, ref(func2b)); + m_string += regex_format(m_cresults, ref(func1b), f); + m_string += regex_format(m_cresults, ref(func1b)); + m_string += regex_format(m_cresults, cref(func3b), f); + m_string += regex_format(m_cresults, cref(func3b)); + m_string += regex_format(m_cresults, cref(func2b), f); + m_string += regex_format(m_cresults, cref(func2b)); + m_string += regex_format(m_cresults, cref(func1b), f); + m_string += regex_format(m_cresults, cref(func1b)); - m_string += m_cresults.format(func3, f); - m_string += m_cresults.format(func3); - m_string += m_cresults.format(func2, f); - m_string += m_cresults.format(func2); - m_string += m_cresults.format(func1, f); - m_string += m_cresults.format(func1); + out = m_cresults.format(out, func3b, f); + out = m_cresults.format(out, func3b); + out = m_cresults.format(out, func2b, f); + out = m_cresults.format(out, func2b); + out = m_cresults.format(out, func1b, f); + out = m_cresults.format(out, func1b); + out = m_cresults.format(out, ref(func3b), f); + out = m_cresults.format(out, ref(func3b)); + out = m_cresults.format(out, ref(func2b), f); + out = m_cresults.format(out, ref(func2b)); + out = m_cresults.format(out, ref(func1b), f); + out = m_cresults.format(out, ref(func1b)); + out = m_cresults.format(out, cref(func3b), f); + out = m_cresults.format(out, cref(func3b)); + out = m_cresults.format(out, cref(func2b), f); + out = m_cresults.format(out, cref(func2b)); + out = m_cresults.format(out, cref(func1b), f); + out = m_cresults.format(out, cref(func1b)); + + m_string += m_cresults.format(func3b, f); + m_string += m_cresults.format(func3b); + m_string += m_cresults.format(func2b, f); + m_string += m_cresults.format(func2b); + m_string += m_cresults.format(func1b, f); + m_string += m_cresults.format(func1b); + m_string += m_cresults.format(ref(func3b), f); + m_string += m_cresults.format(ref(func3b)); + m_string += m_cresults.format(ref(func2b), f); + m_string += m_cresults.format(ref(func2b)); + m_string += m_cresults.format(ref(func1b), f); + m_string += m_cresults.format(ref(func1b)); + m_string += m_cresults.format(cref(func3b), f); + m_string += m_cresults.format(cref(func3b)); + m_string += m_cresults.format(cref(func2b), f); + m_string += m_cresults.format(cref(func2b)); + m_string += m_cresults.format(cref(func1b), f); + m_string += m_cresults.format(cref(func1b)); out = regex_replace(out, m_in, m_in, ce, func3, f); out = regex_replace(out, m_in, m_in, ce, func3); @@ -967,6 +1066,18 @@ struct BoostRegexConcept out = regex_replace(out, m_in, m_in, ce, func2); out = regex_replace(out, m_in, m_in, ce, func1, f); out = regex_replace(out, m_in, m_in, ce, func1); + out = regex_replace(out, m_in, m_in, ce, ref(func3), f); + out = regex_replace(out, m_in, m_in, ce, ref(func3)); + out = regex_replace(out, m_in, m_in, ce, ref(func2), f); + out = regex_replace(out, m_in, m_in, ce, ref(func2)); + out = regex_replace(out, m_in, m_in, ce, ref(func1), f); + out = regex_replace(out, m_in, m_in, ce, ref(func1)); + out = regex_replace(out, m_in, m_in, ce, cref(func3), f); + out = regex_replace(out, m_in, m_in, ce, cref(func3)); + out = regex_replace(out, m_in, m_in, ce, cref(func2), f); + out = regex_replace(out, m_in, m_in, ce, cref(func2)); + out = regex_replace(out, m_in, m_in, ce, cref(func1), f); + out = regex_replace(out, m_in, m_in, ce, cref(func1)); functor3 > func3s; functor2 > func2s; @@ -977,6 +1088,18 @@ struct BoostRegexConcept m_string += regex_replace(m_string, ce, func2s); m_string += regex_replace(m_string, ce, func1s, f); m_string += regex_replace(m_string, ce, func1s); + m_string += regex_replace(m_string, ce, ref(func3s), f); + m_string += regex_replace(m_string, ce, ref(func3s)); + m_string += regex_replace(m_string, ce, ref(func2s), f); + m_string += regex_replace(m_string, ce, ref(func2s)); + m_string += regex_replace(m_string, ce, ref(func1s), f); + m_string += regex_replace(m_string, ce, ref(func1s)); + m_string += regex_replace(m_string, ce, cref(func3s), f); + m_string += regex_replace(m_string, ce, cref(func3s)); + m_string += regex_replace(m_string, ce, cref(func2s), f); + m_string += regex_replace(m_string, ce, cref(func2s)); + m_string += regex_replace(m_string, ce, cref(func1s), f); + m_string += regex_replace(m_string, ce, cref(func1s)); } std::basic_ostream m_stream; diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index 3f0e57de..d2be50fd 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -468,9 +468,9 @@ private: // matching flags in use: match_flag_type m_match_flags; // how many states we have examined so far: - boost::uintmax_t state_count; + std::ptrdiff_t state_count; // max number of states to examine before giving up: - boost::uintmax_t max_state_count; + std::ptrdiff_t max_state_count; // whether we should ignore case or not: bool icase; // set to true when (position == last), indicates that we may have a partial match: diff --git a/include/boost/regex/v4/perl_matcher_common.hpp b/include/boost/regex/v4/perl_matcher_common.hpp index 1657d483..b5bd5936 100644 --- a/include/boost/regex/v4/perl_matcher_common.hpp +++ b/include/boost/regex/v4/perl_matcher_common.hpp @@ -98,23 +98,23 @@ void perl_matcher::estimate_max_state_count(std // // Calculate NS^2 first: // - static const boost::uintmax_t k = 100000; - boost::uintmax_t dist = boost::re_detail::distance(base, last); + static const std::ptrdiff_t k = 100000; + std::ptrdiff_t dist = boost::re_detail::distance(base, last); if(dist == 0) dist = 1; - boost::uintmax_t states = re.size(); + std::ptrdiff_t states = re.size(); if(states == 0) states = 1; states *= states; - if((std::numeric_limits::max)() / dist < states) + if((std::numeric_limits::max)() / dist < states) { - max_state_count = (std::numeric_limits::max)() - 2; + max_state_count = (std::min)((std::ptrdiff_t)BOOST_REGEX_MAX_STATE_COUNT, (std::numeric_limits::max)() - 2); return; } states *= dist; - if((std::numeric_limits::max)() - k < states) + if((std::numeric_limits::max)() - k < states) { - max_state_count = (std::numeric_limits::max)() - 2; + max_state_count = (std::min)((std::ptrdiff_t)BOOST_REGEX_MAX_STATE_COUNT, (std::numeric_limits::max)() - 2); return; } states += k; @@ -125,15 +125,15 @@ void perl_matcher::estimate_max_state_count(std // Now calculate N^2: // states = dist; - if((std::numeric_limits::max)() / dist < states) + if((std::numeric_limits::max)() / dist < states) { - max_state_count = (std::numeric_limits::max)() - 2; + max_state_count = (std::min)((std::ptrdiff_t)BOOST_REGEX_MAX_STATE_COUNT, (std::numeric_limits::max)() - 2); return; } states *= dist; - if((std::numeric_limits::max)() - k < states) + if((std::numeric_limits::max)() - k < states) { - max_state_count = (std::numeric_limits::max)() - 2; + max_state_count = (std::min)((std::ptrdiff_t)BOOST_REGEX_MAX_STATE_COUNT, (std::numeric_limits::max)() - 2); return; } states += k; diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index 51fc62ae..f4d87681 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -34,6 +34,7 @@ #ifndef BOOST_NO_SFINAE #include #endif +#include namespace boost{ @@ -895,7 +896,7 @@ private: // F must be a pointer, a function, or a class with a function call operator: // BOOST_STATIC_ASSERT((::boost::is_pointer::value || ::boost::is_function::value || ::boost::is_class::value)); - static formatter_wrapper f; + static formatter_wrapper::type> f; static M m; static O out; static boost::regex_constants::match_flag_type flags; @@ -963,7 +964,7 @@ struct format_functor3 template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f) { - return func(m, i, f); + return unwrap_ref(func)(m, i, f); } template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits&) @@ -983,7 +984,7 @@ struct format_functor2 template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type /*f*/) { - return func(m, i); + return unwrap_ref(func)(m, i); } template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits&) @@ -1020,7 +1021,7 @@ struct format_functor1 template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type /*f*/) { - return do_format_string(func(m), i); + return do_format_string(unwrap_ref(func)(m), i); } template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits&) From a2142edcd3c4335faf02f5ef3c0577d6611cb1ea Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 20 Apr 2010 16:03:14 +0000 Subject: [PATCH 31/77] Disambiguate between boost::ref and std:ref etc. Suppress some new warnings from VC-10. Fix singular iterator logic (fixes VC-10 failures). Fixes #4114. Fixes #3632 [SVN r61430] --- include/boost/regex/concepts.hpp | 152 ++++++++++---------- include/boost/regex/v4/cpp_regex_traits.hpp | 2 +- include/boost/regex/v4/match_results.hpp | 2 +- include/boost/regex/v4/regex_format.hpp | 6 +- 4 files changed, 85 insertions(+), 77 deletions(-) diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 28d5aeb6..016cf0f2 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -106,6 +106,14 @@ public: allocator_architype(); allocator_architype(const allocator_architype&); +#if defined(BOOST_MSVC) && (BOOST_MSVC == 1600) + // + // This doesn't appear to be part of the allocator requirements + // in the std, but is required by std::vector in VC10 :-( + // + template + allocator_architype(const allocator_architype&); +#endif void construct(pointer, const_reference); void destroy(pointer); @@ -990,18 +998,18 @@ struct BoostRegexConcept out = regex_format(out, m_cresults, func2b); out = regex_format(out, m_cresults, func1b, f); out = regex_format(out, m_cresults, func1b); - out = regex_format(out, m_cresults, ref(func3b), f); - out = regex_format(out, m_cresults, ref(func3b)); - out = regex_format(out, m_cresults, ref(func2b), f); - out = regex_format(out, m_cresults, ref(func2b)); - out = regex_format(out, m_cresults, ref(func1b), f); - out = regex_format(out, m_cresults, ref(func1b)); - out = regex_format(out, m_cresults, cref(func3b), f); - out = regex_format(out, m_cresults, cref(func3b)); - out = regex_format(out, m_cresults, cref(func2b), f); - out = regex_format(out, m_cresults, cref(func2b)); - out = regex_format(out, m_cresults, cref(func1b), f); - out = regex_format(out, m_cresults, cref(func1b)); + out = regex_format(out, m_cresults, boost::ref(func3b), f); + out = regex_format(out, m_cresults, boost::ref(func3b)); + out = regex_format(out, m_cresults, boost::ref(func2b), f); + out = regex_format(out, m_cresults, boost::ref(func2b)); + out = regex_format(out, m_cresults, boost::ref(func1b), f); + out = regex_format(out, m_cresults, boost::ref(func1b)); + out = regex_format(out, m_cresults, boost::cref(func3b), f); + out = regex_format(out, m_cresults, boost::cref(func3b)); + out = regex_format(out, m_cresults, boost::cref(func2b), f); + out = regex_format(out, m_cresults, boost::cref(func2b)); + out = regex_format(out, m_cresults, boost::cref(func1b), f); + out = regex_format(out, m_cresults, boost::cref(func1b)); m_string += regex_format(m_cresults, func3b, f); m_string += regex_format(m_cresults, func3b); @@ -1009,18 +1017,18 @@ struct BoostRegexConcept m_string += regex_format(m_cresults, func2b); m_string += regex_format(m_cresults, func1b, f); m_string += regex_format(m_cresults, func1b); - m_string += regex_format(m_cresults, ref(func3b), f); - m_string += regex_format(m_cresults, ref(func3b)); - m_string += regex_format(m_cresults, ref(func2b), f); - m_string += regex_format(m_cresults, ref(func2b)); - m_string += regex_format(m_cresults, ref(func1b), f); - m_string += regex_format(m_cresults, ref(func1b)); - m_string += regex_format(m_cresults, cref(func3b), f); - m_string += regex_format(m_cresults, cref(func3b)); - m_string += regex_format(m_cresults, cref(func2b), f); - m_string += regex_format(m_cresults, cref(func2b)); - m_string += regex_format(m_cresults, cref(func1b), f); - m_string += regex_format(m_cresults, cref(func1b)); + m_string += regex_format(m_cresults, boost::ref(func3b), f); + m_string += regex_format(m_cresults, boost::ref(func3b)); + m_string += regex_format(m_cresults, boost::ref(func2b), f); + m_string += regex_format(m_cresults, boost::ref(func2b)); + m_string += regex_format(m_cresults, boost::ref(func1b), f); + m_string += regex_format(m_cresults, boost::ref(func1b)); + m_string += regex_format(m_cresults, boost::cref(func3b), f); + m_string += regex_format(m_cresults, boost::cref(func3b)); + m_string += regex_format(m_cresults, boost::cref(func2b), f); + m_string += regex_format(m_cresults, boost::cref(func2b)); + m_string += regex_format(m_cresults, boost::cref(func1b), f); + m_string += regex_format(m_cresults, boost::cref(func1b)); out = m_cresults.format(out, func3b, f); out = m_cresults.format(out, func3b); @@ -1028,18 +1036,18 @@ struct BoostRegexConcept out = m_cresults.format(out, func2b); out = m_cresults.format(out, func1b, f); out = m_cresults.format(out, func1b); - out = m_cresults.format(out, ref(func3b), f); - out = m_cresults.format(out, ref(func3b)); - out = m_cresults.format(out, ref(func2b), f); - out = m_cresults.format(out, ref(func2b)); - out = m_cresults.format(out, ref(func1b), f); - out = m_cresults.format(out, ref(func1b)); - out = m_cresults.format(out, cref(func3b), f); - out = m_cresults.format(out, cref(func3b)); - out = m_cresults.format(out, cref(func2b), f); - out = m_cresults.format(out, cref(func2b)); - out = m_cresults.format(out, cref(func1b), f); - out = m_cresults.format(out, cref(func1b)); + out = m_cresults.format(out, boost::ref(func3b), f); + out = m_cresults.format(out, boost::ref(func3b)); + out = m_cresults.format(out, boost::ref(func2b), f); + out = m_cresults.format(out, boost::ref(func2b)); + out = m_cresults.format(out, boost::ref(func1b), f); + out = m_cresults.format(out, boost::ref(func1b)); + out = m_cresults.format(out, boost::cref(func3b), f); + out = m_cresults.format(out, boost::cref(func3b)); + out = m_cresults.format(out, boost::cref(func2b), f); + out = m_cresults.format(out, boost::cref(func2b)); + out = m_cresults.format(out, boost::cref(func1b), f); + out = m_cresults.format(out, boost::cref(func1b)); m_string += m_cresults.format(func3b, f); m_string += m_cresults.format(func3b); @@ -1047,18 +1055,18 @@ struct BoostRegexConcept m_string += m_cresults.format(func2b); m_string += m_cresults.format(func1b, f); m_string += m_cresults.format(func1b); - m_string += m_cresults.format(ref(func3b), f); - m_string += m_cresults.format(ref(func3b)); - m_string += m_cresults.format(ref(func2b), f); - m_string += m_cresults.format(ref(func2b)); - m_string += m_cresults.format(ref(func1b), f); - m_string += m_cresults.format(ref(func1b)); - m_string += m_cresults.format(cref(func3b), f); - m_string += m_cresults.format(cref(func3b)); - m_string += m_cresults.format(cref(func2b), f); - m_string += m_cresults.format(cref(func2b)); - m_string += m_cresults.format(cref(func1b), f); - m_string += m_cresults.format(cref(func1b)); + m_string += m_cresults.format(boost::ref(func3b), f); + m_string += m_cresults.format(boost::ref(func3b)); + m_string += m_cresults.format(boost::ref(func2b), f); + m_string += m_cresults.format(boost::ref(func2b)); + m_string += m_cresults.format(boost::ref(func1b), f); + m_string += m_cresults.format(boost::ref(func1b)); + m_string += m_cresults.format(boost::cref(func3b), f); + m_string += m_cresults.format(boost::cref(func3b)); + m_string += m_cresults.format(boost::cref(func2b), f); + m_string += m_cresults.format(boost::cref(func2b)); + m_string += m_cresults.format(boost::cref(func1b), f); + m_string += m_cresults.format(boost::cref(func1b)); out = regex_replace(out, m_in, m_in, ce, func3, f); out = regex_replace(out, m_in, m_in, ce, func3); @@ -1066,18 +1074,18 @@ struct BoostRegexConcept out = regex_replace(out, m_in, m_in, ce, func2); out = regex_replace(out, m_in, m_in, ce, func1, f); out = regex_replace(out, m_in, m_in, ce, func1); - out = regex_replace(out, m_in, m_in, ce, ref(func3), f); - out = regex_replace(out, m_in, m_in, ce, ref(func3)); - out = regex_replace(out, m_in, m_in, ce, ref(func2), f); - out = regex_replace(out, m_in, m_in, ce, ref(func2)); - out = regex_replace(out, m_in, m_in, ce, ref(func1), f); - out = regex_replace(out, m_in, m_in, ce, ref(func1)); - out = regex_replace(out, m_in, m_in, ce, cref(func3), f); - out = regex_replace(out, m_in, m_in, ce, cref(func3)); - out = regex_replace(out, m_in, m_in, ce, cref(func2), f); - out = regex_replace(out, m_in, m_in, ce, cref(func2)); - out = regex_replace(out, m_in, m_in, ce, cref(func1), f); - out = regex_replace(out, m_in, m_in, ce, cref(func1)); + out = regex_replace(out, m_in, m_in, ce, boost::ref(func3), f); + out = regex_replace(out, m_in, m_in, ce, boost::ref(func3)); + out = regex_replace(out, m_in, m_in, ce, boost::ref(func2), f); + out = regex_replace(out, m_in, m_in, ce, boost::ref(func2)); + out = regex_replace(out, m_in, m_in, ce, boost::ref(func1), f); + out = regex_replace(out, m_in, m_in, ce, boost::ref(func1)); + out = regex_replace(out, m_in, m_in, ce, boost::cref(func3), f); + out = regex_replace(out, m_in, m_in, ce, boost::cref(func3)); + out = regex_replace(out, m_in, m_in, ce, boost::cref(func2), f); + out = regex_replace(out, m_in, m_in, ce, boost::cref(func2)); + out = regex_replace(out, m_in, m_in, ce, boost::cref(func1), f); + out = regex_replace(out, m_in, m_in, ce, boost::cref(func1)); functor3 > func3s; functor2 > func2s; @@ -1088,18 +1096,18 @@ struct BoostRegexConcept m_string += regex_replace(m_string, ce, func2s); m_string += regex_replace(m_string, ce, func1s, f); m_string += regex_replace(m_string, ce, func1s); - m_string += regex_replace(m_string, ce, ref(func3s), f); - m_string += regex_replace(m_string, ce, ref(func3s)); - m_string += regex_replace(m_string, ce, ref(func2s), f); - m_string += regex_replace(m_string, ce, ref(func2s)); - m_string += regex_replace(m_string, ce, ref(func1s), f); - m_string += regex_replace(m_string, ce, ref(func1s)); - m_string += regex_replace(m_string, ce, cref(func3s), f); - m_string += regex_replace(m_string, ce, cref(func3s)); - m_string += regex_replace(m_string, ce, cref(func2s), f); - m_string += regex_replace(m_string, ce, cref(func2s)); - m_string += regex_replace(m_string, ce, cref(func1s), f); - m_string += regex_replace(m_string, ce, cref(func1s)); + m_string += regex_replace(m_string, ce, boost::ref(func3s), f); + m_string += regex_replace(m_string, ce, boost::ref(func3s)); + m_string += regex_replace(m_string, ce, boost::ref(func2s), f); + m_string += regex_replace(m_string, ce, boost::ref(func2s)); + m_string += regex_replace(m_string, ce, boost::ref(func1s), f); + m_string += regex_replace(m_string, ce, boost::ref(func1s)); + m_string += regex_replace(m_string, ce, boost::cref(func3s), f); + m_string += regex_replace(m_string, ce, boost::cref(func3s)); + m_string += regex_replace(m_string, ce, boost::cref(func2s), f); + m_string += regex_replace(m_string, ce, boost::cref(func2s)); + m_string += regex_replace(m_string, ce, boost::cref(func1s), f); + m_string += regex_replace(m_string, ce, boost::cref(func1s)); } std::basic_ostream m_stream; diff --git a/include/boost/regex/v4/cpp_regex_traits.hpp b/include/boost/regex/v4/cpp_regex_traits.hpp index bb40aa1e..addc96cd 100644 --- a/include/boost/regex/v4/cpp_regex_traits.hpp +++ b/include/boost/regex/v4/cpp_regex_traits.hpp @@ -56,7 +56,7 @@ #ifdef BOOST_MSVC #pragma warning(push) -#pragma warning(disable:4786) +#pragma warning(disable:4786 4251) #endif namespace boost{ diff --git a/include/boost/regex/v4/match_results.hpp b/include/boost/regex/v4/match_results.hpp index 514dbad7..8f11bbbe 100644 --- a/include/boost/regex/v4/match_results.hpp +++ b/include/boost/regex/v4/match_results.hpp @@ -393,7 +393,6 @@ public: std::swap(m_subs, that.m_subs); std::swap(m_named_subs, that.m_named_subs); std::swap(m_last_closed_paren, that.m_last_closed_paren); - std::swap(m_is_singular, that.m_is_singular); if(m_is_singular) { if(!that.m_is_singular) @@ -412,6 +411,7 @@ public: std::swap(m_base, that.m_base); std::swap(m_null, that.m_null); } + std::swap(m_is_singular, that.m_is_singular); } bool operator==(const match_results& that)const { diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index f4d87681..2bd6bac1 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -964,7 +964,7 @@ struct format_functor3 template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f) { - return unwrap_ref(func)(m, i, f); + return boost::unwrap_ref(func)(m, i, f); } template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits&) @@ -984,7 +984,7 @@ struct format_functor2 template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type /*f*/) { - return unwrap_ref(func)(m, i); + return boost::unwrap_ref(func)(m, i); } template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits&) @@ -1021,7 +1021,7 @@ struct format_functor1 template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type /*f*/) { - return do_format_string(unwrap_ref(func)(m), i); + return do_format_string(boost::unwrap_ref(func)(m), i); } template OutputIter operator()(const Match& m, OutputIter i, boost::regex_constants::match_flag_type f, const Traits&) From 87d5fd1421cf6c0c2e0acb11189736befdf5b0b7 Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Tue, 20 Apr 2010 18:49:18 +0000 Subject: [PATCH 32/77] Fixed various issues in docs (mostly duplicate bookmarks and broken links) found by inspect tool [SVN r61437] --- doc/html/boost_regex/background_information/history.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index e501b8c9..0c3cb23c 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -26,7 +26,7 @@ History

    - New issues should be submitted at svn.boost.org + New issues should be submitted at svn.boost.org - don't forget to include your email address in the ticket!

    From fa96f4edf1d1e7362c822499bb9ee430e5585dc7 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 5 May 2010 17:40:07 +0000 Subject: [PATCH 33/77] Change "id" to "idx" to be Objective C++ compatible. Fixes #2306. Fixes #4132. Fixes #4191. [SVN r61789] --- .../boost/regex/v4/basic_regex_creator.hpp | 23 ++-- include/boost/regex/v4/perl_matcher.hpp | 4 +- .../boost/regex/v4/perl_matcher_common.hpp | 8 +- .../regex/v4/perl_matcher_non_recursive.hpp | 20 ++-- .../boost/regex/v4/perl_matcher_recursive.hpp | 6 +- src/c_regex_traits.cpp | 10 +- src/icu.cpp | 18 +-- src/w32_regex_traits.cpp | 108 +++++++++--------- src/wc_regex_traits.cpp | 10 +- 9 files changed, 104 insertions(+), 103 deletions(-) diff --git a/include/boost/regex/v4/basic_regex_creator.hpp b/include/boost/regex/v4/basic_regex_creator.hpp index 0909a836..fe971ed5 100644 --- a/include/boost/regex/v4/basic_regex_creator.hpp +++ b/include/boost/regex/v4/basic_regex_creator.hpp @@ -769,14 +769,14 @@ void basic_regex_creator::fixup_recursions(re_syntax_base* state) case syntax_element_assert_backref: { // just check that the index is valid: - int id = static_cast(state)->index; - if(id < 0) + int idx = static_cast(state)->index; + if(idx < 0) { - id = -id-1; - if(id >= 10000) + idx = -idx-1; + if(idx >= 10000) { - id = m_pdata->get_id(id); - if(id <= 0) + idx = m_pdata->get_id(idx); + if(idx <= 0) { // check of sub-expression that doesn't exist: if(0 == this->m_pdata->m_status) // update the error code if not already set @@ -804,12 +804,12 @@ void basic_regex_creator::fixup_recursions(re_syntax_base* state) { bool ok = false; re_syntax_base* p = base; - std::ptrdiff_t id = static_cast(state)->alt.i; - if(id > 10000) - id = m_pdata->get_id(id); + std::ptrdiff_t idx = static_cast(state)->alt.i; + if(idx > 10000) + idx = m_pdata->get_id(idx); while(p) { - if((p->type == syntax_element_startmark) && (static_cast(p)->index == id)) + if((p->type == syntax_element_startmark) && (static_cast(p)->index == idx)) { // // We've found the target of the recursion, set the jump target: @@ -833,7 +833,7 @@ void basic_regex_creator::fixup_recursions(re_syntax_base* state) next_rep_id = static_cast(p)->state_id; break; case syntax_element_endmark: - if(static_cast(p)->index == id) + if(static_cast(p)->index == idx) next_rep_id = -1; break; default: @@ -1543,3 +1543,4 @@ void basic_regex_creator::probe_leading_repeat(re_syntax_base* st #endif #endif + diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index d2be50fd..52cc55cc 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -336,7 +336,7 @@ struct recursion_info { typedef typename Results::value_type value_type; typedef typename value_type::iterator iterator; - int id; + int idx; const re_syntax_base* preturn_address; Results results; repeater_count* repeater_stack; @@ -522,7 +522,7 @@ private: void push_repeater_count(int i, repeater_count** s); void push_single_repeat(std::size_t c, const re_repeat* r, BidiIterator last_position, int state_id); void push_non_greedy_repeat(const re_syntax_base* ps); - void push_recursion(int id, const re_syntax_base* p, results_type* presults); + void push_recursion(int idx, const re_syntax_base* p, results_type* presults); void push_recursion_pop(); // pointer to base of stack: diff --git a/include/boost/regex/v4/perl_matcher_common.hpp b/include/boost/regex/v4/perl_matcher_common.hpp index b5bd5936..fe224210 100644 --- a/include/boost/regex/v4/perl_matcher_common.hpp +++ b/include/boost/regex/v4/perl_matcher_common.hpp @@ -732,10 +732,10 @@ inline bool perl_matcher::match_assert_backref( { // Have we recursed into subexpression "index"? // If index == 0 then check for any recursion at all, otherwise for recursion to -index-1. - int id = -index-1; - if(id >= 10000) - id = re.get_data().get_id(id); - result = !recursion_stack.empty() && ((recursion_stack.back().id == id) || (index == 0)); + int idx = -index-1; + if(idx >= 10000) + idx = re.get_data().get_id(idx); + result = !recursion_stack.empty() && ((recursion_stack.back().idx == idx) || (index == 0)); pstate = pstate->next.p; } return result; diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index b62a42b2..7ab67817 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -130,8 +130,8 @@ struct saved_single_repeat : public saved_state template struct saved_recursion : public saved_state { - saved_recursion(int id, const re_syntax_base* p, Results* pr) - : saved_state(14), recursion_id(id), preturn_address(p), results(*pr) + saved_recursion(int idx, const re_syntax_base* p, Results* pr) + : saved_state(14), recursion_id(idx), preturn_address(p), results(*pr) {} int recursion_id; const re_syntax_base* preturn_address; @@ -329,7 +329,7 @@ inline void perl_matcher::push_single_repeat(st } template -inline void perl_matcher::push_recursion(int id, const re_syntax_base* p, results_type* presults) +inline void perl_matcher::push_recursion(int idx, const re_syntax_base* p, results_type* presults) { saved_recursion* pmp = static_cast*>(m_backup_state); --pmp; @@ -339,7 +339,7 @@ inline void perl_matcher::push_recursion(int id pmp = static_cast*>(m_backup_state); --pmp; } - (void) new (pmp)saved_recursion(id, p, presults); + (void) new (pmp)saved_recursion(idx, p, presults); m_backup_state = pmp; } @@ -910,7 +910,7 @@ bool perl_matcher::match_recursion() push_repeater_count(static_cast(pstate)->state_id, &next_count); } pstate = static_cast(pstate)->alt.p; - recursion_stack.back().id = static_cast(pstate)->index; + recursion_stack.back().idx = static_cast(pstate)->index; return true; } @@ -928,11 +928,11 @@ bool perl_matcher::match_endmark() } if(!recursion_stack.empty()) { - if(index == recursion_stack.back().id) + if(index == recursion_stack.back().idx) { pstate = recursion_stack.back().preturn_address; *m_presult = recursion_stack.back().results; - push_recursion(recursion_stack.back().id, recursion_stack.back().preturn_address, &recursion_stack.back().results); + push_recursion(recursion_stack.back().idx, recursion_stack.back().preturn_address, &recursion_stack.back().results); recursion_stack.pop_back(); } } @@ -952,10 +952,10 @@ bool perl_matcher::match_match() { if(!recursion_stack.empty()) { - BOOST_ASSERT(0 == recursion_stack.back().id); + BOOST_ASSERT(0 == recursion_stack.back().idx); pstate = recursion_stack.back().preturn_address; *m_presult = recursion_stack.back().results; - push_recursion(recursion_stack.back().id, recursion_stack.back().preturn_address, &recursion_stack.back().results); + push_recursion(recursion_stack.back().idx, recursion_stack.back().preturn_address, &recursion_stack.back().results); recursion_stack.pop_back(); return true; } @@ -1523,7 +1523,7 @@ bool perl_matcher::unwind_recursion(bool r) if(!r) { recursion_stack.push_back(recursion_info()); - recursion_stack.back().id = pmp->recursion_id; + recursion_stack.back().idx = pmp->recursion_id; recursion_stack.back().preturn_address = pmp->preturn_address; recursion_stack.back().results = pmp->results; } diff --git a/include/boost/regex/v4/perl_matcher_recursive.hpp b/include/boost/regex/v4/perl_matcher_recursive.hpp index 7436fa6c..74c29122 100644 --- a/include/boost/regex/v4/perl_matcher_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_recursive.hpp @@ -866,7 +866,7 @@ bool perl_matcher::match_recursion() recursion_stack.back().results = *m_presult; recursion_stack.back().repeater_stack = next_count; pstate = static_cast(pstate)->alt.p; - recursion_stack.back().id = static_cast(pstate)->index; + recursion_stack.back().idx = static_cast(pstate)->index; repeater_count* saved = next_count; repeater_count r(&next_count); // resets all repeat counts since we're recursing and starting fresh on those @@ -897,7 +897,7 @@ bool perl_matcher::match_endmark() } if(!recursion_stack.empty()) { - if(index == recursion_stack.back().id) + if(index == recursion_stack.back().idx) { recursion_info saved = recursion_stack.back(); recursion_stack.pop_back(); @@ -929,7 +929,7 @@ bool perl_matcher::match_match() { if(!recursion_stack.empty()) { - BOOST_ASSERT(0 == recursion_stack.back().id); + BOOST_ASSERT(0 == recursion_stack.back().idx); const re_syntax_base* saved_state = pstate = recursion_stack.back().preturn_address; *m_presult = recursion_stack.back().results; recursion_stack.pop_back(); diff --git a/src/c_regex_traits.cpp b/src/c_regex_traits.cpp index 6466bc42..a99de14c 100644 --- a/src/c_regex_traits.cpp +++ b/src/c_regex_traits.cpp @@ -155,16 +155,16 @@ c_regex_traits::char_class_type BOOST_REGEX_CALL c_regex_traits::loo char_class_xdigit, }; - int id = ::boost::re_detail::get_default_class_id(p1, p2); - if(id < 0) + int idx = ::boost::re_detail::get_default_class_id(p1, p2); + if(idx < 0) { std::string s(p1, p2); for(std::string::size_type i = 0; i < s.size(); ++i) s[i] = static_cast((std::tolower)(static_cast(s[i]))); - id = ::boost::re_detail::get_default_class_id(&*s.begin(), &*s.begin() + s.size()); + idx = ::boost::re_detail::get_default_class_id(&*s.begin(), &*s.begin() + s.size()); } - BOOST_ASSERT(std::size_t(id+1) < sizeof(masks) / sizeof(masks[0])); - return masks[id+1]; + BOOST_ASSERT(std::size_t(idx+1) < sizeof(masks) / sizeof(masks[0])); + return masks[idx+1]; } bool BOOST_REGEX_CALL c_regex_traits::isctype(char c, char_class_type mask) diff --git a/src/icu.cpp b/src/icu.cpp index a815e915..75ca1444 100644 --- a/src/icu.cpp +++ b/src/icu.cpp @@ -388,14 +388,14 @@ icu_regex_traits::char_class_type icu_regex_traits::lookup_classname(const char_ char_class_type(U_GC_ND_MASK) | mask_xdigit, }; - int id = ::boost::re_detail::get_default_class_id(p1, p2); - if(id >= 0) - return masks[id+1]; + int idx = ::boost::re_detail::get_default_class_id(p1, p2); + if(idx >= 0) + return masks[idx+1]; char_class_type result = lookup_icu_mask(p1, p2); if(result != 0) return result; - if(id < 0) + if(idx < 0) { string_type s(p1, p2); string_type::size_type i = 0; @@ -411,16 +411,16 @@ icu_regex_traits::char_class_type icu_regex_traits::lookup_classname(const char_ } } if(s.size()) - id = ::boost::re_detail::get_default_class_id(&*s.begin(), &*s.begin() + s.size()); - if(id >= 0) - return masks[id+1]; + idx = ::boost::re_detail::get_default_class_id(&*s.begin(), &*s.begin() + s.size()); + if(idx >= 0) + return masks[idx+1]; if(s.size()) result = lookup_icu_mask(&*s.begin(), &*s.begin() + s.size()); if(result != 0) return result; } - BOOST_ASSERT(std::size_t(id+1) < sizeof(masks) / sizeof(masks[0])); - return masks[id+1]; + BOOST_ASSERT(std::size_t(idx+1) < sizeof(masks) / sizeof(masks[0])); + return masks[idx+1]; } icu_regex_traits::string_type icu_regex_traits::lookup_collatename(const char_type* p1, const char_type* p2) const diff --git a/src/w32_regex_traits.cpp b/src/w32_regex_traits.cpp index 365fccc0..8c22214d 100644 --- a/src/w32_regex_traits.cpp +++ b/src/w32_regex_traits.cpp @@ -43,10 +43,10 @@ namespace std{ namespace boost{ namespace re_detail{ #ifdef BOOST_NO_ANSI_APIS -UINT get_code_page_for_locale_id(lcid_type id) +UINT get_code_page_for_locale_id(lcid_type idx) { WCHAR code_page_string[7]; - if (::GetLocaleInfoW(id, LOCALE_IDEFAULTANSICODEPAGE, code_page_string, 7) == 0) + if (::GetLocaleInfoW(idx, LOCALE_IDEFAULTANSICODEPAGE, code_page_string, 7) == 0) return 0; return static_cast(_wtol(code_page_string)); @@ -157,15 +157,15 @@ BOOST_REGEX_DECL lcid_type BOOST_REGEX_CALL w32_get_default_locale() return ::GetUserDefaultLCID(); } -BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_lower(char c, lcid_type id) +BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_lower(char c, lcid_type idx) { #ifndef BOOST_NO_ANSI_APIS WORD mask; - if(::GetStringTypeExA(id, CT_CTYPE1, &c, 1, &mask) && (mask & C1_LOWER)) + if(::GetStringTypeExA(idx, CT_CTYPE1, &c, 1, &mask) && (mask & C1_LOWER)) return true; return false; #else - UINT code_page = get_code_page_for_locale_id(id); + UINT code_page = get_code_page_for_locale_id(idx); if (code_page == 0) return false; @@ -174,39 +174,39 @@ BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_lower(char c, lcid_type id) return false; WORD mask; - if(::GetStringTypeExW(id, CT_CTYPE1, &wide_c, 1, &mask) && (mask & C1_LOWER)) + if(::GetStringTypeExW(idx, CT_CTYPE1, &wide_c, 1, &mask) && (mask & C1_LOWER)) return true; return false; #endif } -BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_lower(wchar_t c, lcid_type id) +BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_lower(wchar_t c, lcid_type idx) { WORD mask; - if(::GetStringTypeExW(id, CT_CTYPE1, &c, 1, &mask) && (mask & C1_LOWER)) + if(::GetStringTypeExW(idx, CT_CTYPE1, &c, 1, &mask) && (mask & C1_LOWER)) return true; return false; } #ifdef BOOST_REGEX_HAS_OTHER_WCHAR_T -BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_lower(unsigned short ca, lcid_type id) +BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_lower(unsigned short ca, lcid_type idx) { WORD mask; wchar_t c = ca; - if(::GetStringTypeExW(id, CT_CTYPE1, &c, 1, &mask) && (mask & C1_LOWER)) + if(::GetStringTypeExW(idx, CT_CTYPE1, &c, 1, &mask) && (mask & C1_LOWER)) return true; return false; } #endif -BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_upper(char c, lcid_type id) +BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_upper(char c, lcid_type idx) { #ifndef BOOST_NO_ANSI_APIS WORD mask; - if(::GetStringTypeExA(id, CT_CTYPE1, &c, 1, &mask) && (mask & C1_UPPER)) + if(::GetStringTypeExA(idx, CT_CTYPE1, &c, 1, &mask) && (mask & C1_UPPER)) return true; return false; #else - UINT code_page = get_code_page_for_locale_id(id); + UINT code_page = get_code_page_for_locale_id(idx); if (code_page == 0) return false; @@ -215,25 +215,25 @@ BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_upper(char c, lcid_type id) return false; WORD mask; - if(::GetStringTypeExW(id, CT_CTYPE1, &wide_c, 1, &mask) && (mask & C1_UPPER)) + if(::GetStringTypeExW(idx, CT_CTYPE1, &wide_c, 1, &mask) && (mask & C1_UPPER)) return true; return false; #endif } -BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_upper(wchar_t c, lcid_type id) +BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_upper(wchar_t c, lcid_type idx) { WORD mask; - if(::GetStringTypeExW(id, CT_CTYPE1, &c, 1, &mask) && (mask & C1_UPPER)) + if(::GetStringTypeExW(idx, CT_CTYPE1, &c, 1, &mask) && (mask & C1_UPPER)) return true; return false; } #ifdef BOOST_REGEX_HAS_OTHER_WCHAR_T -BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_upper(unsigned short ca, lcid_type id) +BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_upper(unsigned short ca, lcid_type idx) { WORD mask; wchar_t c = ca; - if(::GetStringTypeExW(id, CT_CTYPE1, &c, 1, &mask) && (mask & C1_UPPER)) + if(::GetStringTypeExW(idx, CT_CTYPE1, &c, 1, &mask) && (mask & C1_UPPER)) return true; return false; } @@ -322,11 +322,11 @@ BOOST_REGEX_DECL std::basic_string BOOST_REGEX_CALL w32_cat_get( } #endif #endif -BOOST_REGEX_DECL std::string BOOST_REGEX_CALL w32_transform(lcid_type id, const char* p1, const char* p2) +BOOST_REGEX_DECL std::string BOOST_REGEX_CALL w32_transform(lcid_type idx, const char* p1, const char* p2) { #ifndef BOOST_NO_ANSI_APIS int bytes = ::LCMapStringA( - id, // locale identifier + idx, // locale identifier LCMAP_SORTKEY, // mapping transformation type p1, // source string static_cast(p2 - p1), // number of characters in source string @@ -337,7 +337,7 @@ BOOST_REGEX_DECL std::string BOOST_REGEX_CALL w32_transform(lcid_type id, const return std::string(p1, p2); std::string result(++bytes, '\0'); bytes = ::LCMapStringA( - id, // locale identifier + idx, // locale identifier LCMAP_SORTKEY, // mapping transformation type p1, // source string static_cast(p2 - p1), // number of characters in source string @@ -345,7 +345,7 @@ BOOST_REGEX_DECL std::string BOOST_REGEX_CALL w32_transform(lcid_type id, const bytes // size of destination buffer ); #else - UINT code_page = get_code_page_for_locale_id(id); + UINT code_page = get_code_page_for_locale_id(idx); if(code_page == 0) return std::string(p1, p2); @@ -355,7 +355,7 @@ BOOST_REGEX_DECL std::string BOOST_REGEX_CALL w32_transform(lcid_type id, const return std::string(p1, p2); int bytes = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_SORTKEY, // mapping transformation type wide_p1, // source string src_len, // number of characters in source string @@ -366,7 +366,7 @@ BOOST_REGEX_DECL std::string BOOST_REGEX_CALL w32_transform(lcid_type id, const return std::string(p1, p2); std::string result(++bytes, '\0'); bytes = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_SORTKEY, // mapping transformation type wide_p1, // source string src_len, // number of characters in source string @@ -384,10 +384,10 @@ BOOST_REGEX_DECL std::string BOOST_REGEX_CALL w32_transform(lcid_type id, const } #ifndef BOOST_NO_WREGEX -BOOST_REGEX_DECL std::wstring BOOST_REGEX_CALL w32_transform(lcid_type id, const wchar_t* p1, const wchar_t* p2) +BOOST_REGEX_DECL std::wstring BOOST_REGEX_CALL w32_transform(lcid_type idx, const wchar_t* p1, const wchar_t* p2) { int bytes = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_SORTKEY, // mapping transformation type p1, // source string static_cast(p2 - p1), // number of characters in source string @@ -398,7 +398,7 @@ BOOST_REGEX_DECL std::wstring BOOST_REGEX_CALL w32_transform(lcid_type id, const return std::wstring(p1, p2); std::string result(++bytes, '\0'); bytes = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_SORTKEY, // mapping transformation type p1, // source string static_cast(p2 - p1), // number of characters in source string @@ -417,10 +417,10 @@ BOOST_REGEX_DECL std::wstring BOOST_REGEX_CALL w32_transform(lcid_type id, const return r2; } #ifdef BOOST_REGEX_HAS_OTHER_WCHAR_T -BOOST_REGEX_DECL std::basic_string BOOST_REGEX_CALL w32_transform(lcid_type id, const unsigned short* p1, const unsigned short* p2) +BOOST_REGEX_DECL std::basic_string BOOST_REGEX_CALL w32_transform(lcid_type idx, const unsigned short* p1, const unsigned short* p2) { int bytes = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_SORTKEY, // mapping transformation type (LPCWSTR)p1, // source string static_cast(p2 - p1), // number of characters in source string @@ -431,7 +431,7 @@ BOOST_REGEX_DECL std::basic_string BOOST_REGEX_CALL w32_transfor return std::basic_string(p1, p2); std::string result(++bytes, '\0'); bytes = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_SORTKEY, // mapping transformation type (LPCWSTR)p1, // source string static_cast(p2 - p1), // number of characters in source string @@ -451,12 +451,12 @@ BOOST_REGEX_DECL std::basic_string BOOST_REGEX_CALL w32_transfor } #endif #endif -BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_tolower(char c, lcid_type id) +BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_tolower(char c, lcid_type idx) { char result[2]; #ifndef BOOST_NO_ANSI_APIS int b = ::LCMapStringA( - id, // locale identifier + idx, // locale identifier LCMAP_LOWERCASE, // mapping transformation type &c, // source string 1, // number of characters in source string @@ -465,7 +465,7 @@ BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_tolower(char c, lcid_type id) if(b == 0) return c; #else - UINT code_page = get_code_page_for_locale_id(id); + UINT code_page = get_code_page_for_locale_id(idx); if (code_page == 0) return c; @@ -475,7 +475,7 @@ BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_tolower(char c, lcid_type id) WCHAR wide_result; int b = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_LOWERCASE, // mapping transformation type &wide_c, // source string 1, // number of characters in source string @@ -491,11 +491,11 @@ BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_tolower(char c, lcid_type id) } #ifndef BOOST_NO_WREGEX -BOOST_REGEX_DECL wchar_t BOOST_REGEX_CALL w32_tolower(wchar_t c, lcid_type id) +BOOST_REGEX_DECL wchar_t BOOST_REGEX_CALL w32_tolower(wchar_t c, lcid_type idx) { wchar_t result[2]; int b = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_LOWERCASE, // mapping transformation type &c, // source string 1, // number of characters in source string @@ -506,11 +506,11 @@ BOOST_REGEX_DECL wchar_t BOOST_REGEX_CALL w32_tolower(wchar_t c, lcid_type id) return result[0]; } #ifdef BOOST_REGEX_HAS_OTHER_WCHAR_T -BOOST_REGEX_DECL unsigned short BOOST_REGEX_CALL w32_tolower(unsigned short c, lcid_type id) +BOOST_REGEX_DECL unsigned short BOOST_REGEX_CALL w32_tolower(unsigned short c, lcid_type idx) { wchar_t result[2]; int b = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_LOWERCASE, // mapping transformation type (wchar_t const*)&c, // source string 1, // number of characters in source string @@ -522,12 +522,12 @@ BOOST_REGEX_DECL unsigned short BOOST_REGEX_CALL w32_tolower(unsigned short c, l } #endif #endif -BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_toupper(char c, lcid_type id) +BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_toupper(char c, lcid_type idx) { char result[2]; #ifndef BOOST_NO_ANSI_APIS int b = ::LCMapStringA( - id, // locale identifier + idx, // locale identifier LCMAP_UPPERCASE, // mapping transformation type &c, // source string 1, // number of characters in source string @@ -536,7 +536,7 @@ BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_toupper(char c, lcid_type id) if(b == 0) return c; #else - UINT code_page = get_code_page_for_locale_id(id); + UINT code_page = get_code_page_for_locale_id(idx); if(code_page == 0) return c; @@ -546,7 +546,7 @@ BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_toupper(char c, lcid_type id) WCHAR wide_result; int b = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_UPPERCASE, // mapping transformation type &wide_c, // source string 1, // number of characters in source string @@ -562,11 +562,11 @@ BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_toupper(char c, lcid_type id) } #ifndef BOOST_NO_WREGEX -BOOST_REGEX_DECL wchar_t BOOST_REGEX_CALL w32_toupper(wchar_t c, lcid_type id) +BOOST_REGEX_DECL wchar_t BOOST_REGEX_CALL w32_toupper(wchar_t c, lcid_type idx) { wchar_t result[2]; int b = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_UPPERCASE, // mapping transformation type &c, // source string 1, // number of characters in source string @@ -577,11 +577,11 @@ BOOST_REGEX_DECL wchar_t BOOST_REGEX_CALL w32_toupper(wchar_t c, lcid_type id) return result[0]; } #ifdef BOOST_REGEX_HAS_OTHER_WCHAR_T -BOOST_REGEX_DECL unsigned short BOOST_REGEX_CALL w32_toupper(unsigned short c, lcid_type id) +BOOST_REGEX_DECL unsigned short BOOST_REGEX_CALL w32_toupper(unsigned short c, lcid_type idx) { wchar_t result[2]; int b = ::LCMapStringW( - id, // locale identifier + idx, // locale identifier LCMAP_UPPERCASE, // mapping transformation type (wchar_t const*)&c, // source string 1, // number of characters in source string @@ -593,14 +593,14 @@ BOOST_REGEX_DECL unsigned short BOOST_REGEX_CALL w32_toupper(unsigned short c, l } #endif #endif -BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type id, boost::uint32_t m, char c) +BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type idx, boost::uint32_t m, char c) { WORD mask; #ifndef BOOST_NO_ANSI_APIS - if(::GetStringTypeExA(id, CT_CTYPE1, &c, 1, &mask) && (mask & m & w32_regex_traits_implementation::mask_base)) + if(::GetStringTypeExA(idx, CT_CTYPE1, &c, 1, &mask) && (mask & m & w32_regex_traits_implementation::mask_base)) return true; #else - UINT code_page = get_code_page_for_locale_id(id); + UINT code_page = get_code_page_for_locale_id(idx); if(code_page == 0) return false; @@ -608,7 +608,7 @@ BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type id, boost::uint32_t m, c if (::MultiByteToWideChar(code_page, 0, &c, 1, &wide_c, 1) == 0) return false; - if(::GetStringTypeExW(id, CT_CTYPE1, &wide_c, 1, &mask) && (mask & m & w32_regex_traits_implementation::mask_base)) + if(::GetStringTypeExW(idx, CT_CTYPE1, &wide_c, 1, &mask) && (mask & m & w32_regex_traits_implementation::mask_base)) return true; #endif if((m & w32_regex_traits_implementation::mask_word) && (c == '_')) @@ -617,10 +617,10 @@ BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type id, boost::uint32_t m, c } #ifndef BOOST_NO_WREGEX -BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type id, boost::uint32_t m, wchar_t c) +BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type idx, boost::uint32_t m, wchar_t c) { WORD mask; - if(::GetStringTypeExW(id, CT_CTYPE1, &c, 1, &mask) && (mask & m & w32_regex_traits_implementation::mask_base)) + if(::GetStringTypeExW(idx, CT_CTYPE1, &c, 1, &mask) && (mask & m & w32_regex_traits_implementation::mask_base)) return true; if((m & w32_regex_traits_implementation::mask_word) && (c == '_')) return true; @@ -629,10 +629,10 @@ BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type id, boost::uint32_t m, w return false; } #ifdef BOOST_REGEX_HAS_OTHER_WCHAR_T -BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type id, boost::uint32_t m, unsigned short c) +BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type idx, boost::uint32_t m, unsigned short c) { WORD mask; - if(::GetStringTypeExW(id, CT_CTYPE1, (wchar_t const*)&c, 1, &mask) && (mask & m & w32_regex_traits_implementation::mask_base)) + if(::GetStringTypeExW(idx, CT_CTYPE1, (wchar_t const*)&c, 1, &mask) && (mask & m & w32_regex_traits_implementation::mask_base)) return true; if((m & w32_regex_traits_implementation::mask_word) && (c == '_')) return true; diff --git a/src/wc_regex_traits.cpp b/src/wc_regex_traits.cpp index fb622b5a..a9e96d9e 100644 --- a/src/wc_regex_traits.cpp +++ b/src/wc_regex_traits.cpp @@ -195,16 +195,16 @@ c_regex_traits::char_class_type BOOST_REGEX_CALL c_regex_traits(sizeof(masks) / sizeof(masks[0]))); - return masks[id+1]; + BOOST_ASSERT(idx+1 < static_cast(sizeof(masks) / sizeof(masks[0]))); + return masks[idx+1]; } bool BOOST_REGEX_CALL c_regex_traits::isctype(wchar_t c, char_class_type mask) From 05636b5c890de0379407ff922c6ed5acd1a7a272 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 10 May 2010 12:13:49 +0000 Subject: [PATCH 34/77] Fix numerous VC-10 compiler warnings. Rewrite ICU configuration to use the new Boost.Build configuration logic. [SVN r61893] --- build/Jamfile.v2 | 307 ++---------------- build/has_icu_test.cpp | 26 ++ example/Jamfile.v2 | 5 +- example/grep/grep.cpp | 7 +- example/snippets/icu_example.cpp | 10 +- example/snippets/partial_regex_grep.cpp | 2 +- example/snippets/partial_regex_iterate.cpp | 2 +- example/snippets/regex_grep_example_1.cpp | 2 +- example/snippets/regex_grep_example_2.cpp | 2 +- example/snippets/regex_grep_example_3.cpp | 2 +- example/snippets/regex_iterator_example.cpp | 2 +- example/snippets/regex_merge_example.cpp | 2 +- example/snippets/regex_replace_example.cpp | 2 +- example/snippets/regex_search_example.cpp | 2 +- example/snippets/regex_split_example_2.cpp | 2 +- .../snippets/regex_token_iterator_eg_2.cpp | 2 +- include/boost/regex/icu.hpp | 8 + include/boost/regex/v4/regex_workaround.hpp | 32 +- .../regex/v4/u32regex_token_iterator.hpp | 2 +- test/Jamfile.v2 | 8 +- test/c_compiler_checks/posix_api_check.c | 4 +- test/c_compiler_checks/wide_posix_api_check.c | 8 +- test/regress/main.cpp | 5 + test/unicode/unicode_iterator_test.cpp | 16 +- 24 files changed, 147 insertions(+), 313 deletions(-) create mode 100644 build/has_icu_test.cpp diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 01b14e26..25266119 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -3,10 +3,6 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt. -project boost/regex - : source-location ../src - ; - # # ICU configuration: # @@ -14,240 +10,35 @@ if [ modules.peek : ICU_PATH ] { ICU_PATH = [ modules.peek : ICU_PATH ] ; } - -rule check-icu-config ( ) -{ - local HAVE_ICU = [ modules.peek : HAVE_ICU ] ; - local ICU_LINK = [ modules.peek : ICU_LINK ] ; - - if ! $(gICU_CONFIG_CHECKED) - { - if $(HAVE_ICU) && ! $(ICU_PATH) - { - gHAS_ICU = true ; - gICU_CORE_LIB = icuuc ; - gICU_IN_LIB = icui18n ; - gICU_DATA_LIB = icudata ; - gICU_CONFIG_CHECKED = true ; - } - else if $(ICU_PATH) - { - dir = $(ICU_PATH) ; - - if [ GLOB $(dir)/include/unicode : utypes.h ] - { - gHAS_ICU = true ; - - # try and find ICU libraries, look for NT versions first: - if $(ICU_LINK) - { - gICU_LIBS += $(ICU_LINK) ; - } - else if [ GLOB $(dir)/lib64 : icuuc.* ] - { - gICU_CORE_LIB = icuuc ; - } - else if [ GLOB $(dir)/lib : icuuc.* ] - { - gICU_CORE_LIB = icuuc ; - } - else if [ GLOB $(dir)/lib : libicuuc.* ] - { - gICU_CORE_LIB = icuuc ; - } - else if [ GLOB $(ICU_PATH)/lib : cygicuuc*.dll ] - { - gICU_CORE_LIB = cygicuuc.dll ; - gICU_CYGWIN = true ; - } - else - { - ECHO warning: ICU shared common library not found in path. ; - ECHO hint: If the regex library fails to link then try again ; - ECHO with the environment variable ICU_LINK set to contain ; - ECHO the linker options required to link to ICU. ; - ECHO Defaulting to look for libicuuc ... ; - gICU_CORE_LIB = icuuc ; - } - - if $(ICU_LINK) - { - # nothing to do, it's already been done! - # gICU_LIBS += $(ICU_LINK) ; - } - else if [ GLOB $(dir)/lib : icuin.* ] - { - gICU_IN_LIB = icuin ; - } - else if [ GLOB $(dir)/lib : icui18n.* ] - { - gICU_IN_LIB = icui18n ; - } - else if [ GLOB $(dir)/lib64 : libicui18n.* ] - { - gICU_IN_LIB = icui18n ; - } - else if [ GLOB $(dir)/lib : libicui18n.* ] - { - gICU_IN_LIB = icui18n ; - } - else if [ GLOB $(ICU_PATH)/lib : cygicuin*.dll ] - { - gICU_IN_LIB = cygicuin.dll ; - gICU_CYGWIN = true ; - } - else - { - ECHO warning: ICU shared i18n library not found in path. ; - ECHO hint: If the regex library fails to link then try again ; - ECHO with the environment variable ICU_LINK set to contain ; - ECHO the linker options required to link to ICU. ; - ECHO Defaulting to look for libicui18n ... ; - gICU_IN_LIB = icui18n ; - } -#Added by Tommy Nordgren - libicudata muct be linked against on Mac OS X - if $(ICU_LINK) - { - # nothing to do, it's already been done! - # gICU_LIBS += $(ICU_LINK) ; - } - else if [ GLOB $(dir)/lib64 : icudt.* ] - { - gICU_DATA_LIB = icudt ; - } - else if [ GLOB $(dir)/lib : icudt.* ] - { - gICU_DATA_LIB = icudt ; - } - else if [ GLOB $(dir)/lib : libicudata.* ] - { - gICU_DATA_LIB = icudata ; - } - else if [ GLOB $(ICU_PATH)/lib : cygicudt*.dll ] - { - gICU_DATA_LIB = cygicudt.dll ; - gICU_CYGWIN = true ; - } - else - { - local os = [ modules.peek : OS ] ; - echo $(os) ; - if $(os) != "DARWIN" - { - ECHO warning: ICU shared data library not found in path. ; - ECHO hint: If the regex library fails to link then try again ; - ECHO with the environment variable ICU_LINK set to contain ; - ECHO the linker options required to link to ICU. ; - } - else - { - ECHO warning: ICU shared data library not found in path. ; - ECHO hint: If the regex library fails to link then try again ; - ECHO with the environment variable ICU_LINK set to contain ; - ECHO the linker options required to link to ICU. ; - ECHO Defaulting to look for libicudata ... ; - gICU_DATA_LIB = icudata ; - } - } -#End of addition by Tommy Nordgren - } - } - - gICU_CONFIG_CHECKED = true ; - } - - if $(gHAS_ICU) - { - message icu_config ; - message icu_config2 - : Note: Building Boost.Regex with Unicode/ICU support enabled - : " Using ICU in " $(ICU_PATH:J=" ")/include ; - return true ; - } - else - { - message icu_config - : "warning: Building Boost.Regex with the optional Unicode/ICU support disabled." - : "note: Please refer to the Boost.Regex documentation for more information" - : "note: this is a strictly optional feature." ; - - if $(ICU_PATH) - { - message icu_config2 - : warning! ICU configuration failed - : " Couldn't find utypes.h in " $(ICU_PATH:J=" ")/include/unicode ; - } - else - { - message icu_config2 ; - } - } +if [ modules.peek : ICU_LINK ] +{ + ICU_LINK = [ modules.peek : ICU_LINK ] ; } -explicit icu_config ; -explicit icu_config2 ; - -if [ check-icu-config ] +if $(ICU_LINK) { -if $(gHAS_ICU) -{ - BOOST_REGEX_ICU_OPTS = "freebsd:/usr/local/include" ; - ICU_SEARCH_OPTS = "freebsd:$(ICU_PATH)/lib" ; - BOOST_REGEX_ICU_OPTS += "BOOST_HAS_ICU=1" ; - BOOST_REGEX_ICU_OPTS += "$(gICU_LIBS)" ; - - if $(ICU_PATH) - { - # If ICU_PATH is specified on the command line, then it's - # relative to the current directory, while paths specified - # in a Jamfile are relative to that Jamfile. So, to - # avoid confusing the user if he's not running from - # libs/regex/build, explicitly root this. - ICU_PATH = [ path.native - [ path.root [ path.make $(ICU_PATH) ] [ path.pwd ] ] ] ; - if $(ICU_PATH) != "/usr" && $(ICU_PATH) != "/usr/local" - { - BOOST_REGEX_ICU_OPTS += "$(ICU_PATH)/include" ; - ICU_SEARCH_OPTS = $(ICU_PATH)/lib ; - } - } - - if $(gICU_CYGWIN) - { - if $(gICU_CORE_LIB) - { - BOOST_REGEX_ICU_OPTS += "$(gICU_CORE_LIB) ; - } - if $(gICU_IN_LIB) - { - BOOST_REGEX_ICU_OPTS += "$(gICU_IN_LIB) ; - } - } - else - { - if $(gICU_CORE_LIB) - { - lib icucore : : $(gICU_CORE_LIB) $(ICU_SEARCH_OPTS) shared ; - ICU_EXTRA_SOURCE = icucore ; - explicit icucore ; - } - if $(gICU_IN_LIB) - { - lib icuin : : $(gICU_IN_LIB) $(ICU_SEARCH_OPTS) shared ; - ICU_EXTRA_SOURCE += icuin ; - explicit icuin ; - } -#Added by Tommy Nordgren libicudata must be linked against on Mac OS X - if $(gICU_DATA_LIB) - { - lib icudata : : $(gICU_DATA_LIB) $(ICU_SEARCH_OPTS) shared ; - ICU_EXTRA_SOURCE += icudata ; - explicit icudata ; - } -#End of addition by Tommy Nordgren - } - } + ICU_OPTS = $(ICU_PATH)/include $(ICU_LINK) $(ICU_PATH)/bin BOOST_HAS_ICU=1 shared ; } +else +{ + lib icuuc : : $(ICU_PATH)/lib shared shared ; + lib icuuc : : msvc debug icuucd $(ICU_PATH)/lib shared shared ; + lib icuuc : : this_is_an_invalid_library_name ; + lib icudt : : $(ICU_PATH)/lib icudata shared shared ; + lib icudt : : $(ICU_PATH)/lib icudt msvc shared shared ; + lib icudt : : this_is_an_invalid_library_name ; + lib icuin : : $(ICU_PATH)/lib icui18n shared shared ; + lib icuin : : msvc debug icuind $(ICU_PATH)/lib shared shared ; + lib icuin : : msvc release icuin $(ICU_PATH)/lib shared shared ; + lib icuin : : this_is_an_invalid_library_name ; + + ICU_OPTS = $(ICU_PATH)/include icuuc/shared/shared icudt/shared/shared icuin/shared/shared $(ICU_PATH)/bin BOOST_HAS_ICU=1 shared ; +} + +exe has_icu : ./has_icu_test.cpp : $(ICU_OPTS) ; +explicit has_icu ; + +alias icu_options : : : : [ check-target-builds has_icu : $(ICU_OPTS) : ] ; SOURCES = c_regex_traits.cpp @@ -269,59 +60,13 @@ SOURCES = usinstances.cpp ; -lib boost_regex : ../src/$(SOURCES) $(ICU_EXTRA_SOURCE) icu_config2 icu_config +lib boost_regex : ../src/$(SOURCES) icu_options : - #static:BOOST_REGEX_NO_LIB=1 - #static:BOOST_REGEX_STATIC_LINK=1 shared:BOOST_REGEX_DYN_LINK=1 gcc-mw:static gcc-mingw:static gcc-cygwin:static - $(BOOST_REGEX_ICU_OPTS) - @force-shared-linking ; -shared-linking-warning-emitted = ; - -# The ICU is shipped as shared libraries with dynamic runtime. -# If Boost.Regex is built against static runtime, the combination -# will not work. The below rule forces shared runtime, and -# prints an explanation. -rule force-shared-linking ( properties * ) -{ - if $(gHAS_ICU) - { - if static in $(properties) - { - if ! $(shared-linking-warning-emitted) - { - shared-linking-warning-emitted = 1 ; - ECHO "warning: forcing runtime-link=shared for Boost.Regex" ; - ECHO "warning: this is required when using the ICU library" ; - } - } - return shared ; - } -} - - - -alias icu_options : $(ICU_EXTRA_SOURCE) : : : $(BOOST_REGEX_ICU_OPTS) ; -explicit icu_options ; - boost-install boost_regex ; - - - - - - - - - - - - - - diff --git a/build/has_icu_test.cpp b/build/has_icu_test.cpp new file mode 100644 index 00000000..f79880cc --- /dev/null +++ b/build/has_icu_test.cpp @@ -0,0 +1,26 @@ +/* + * + * Copyright (c) 2010 + * John Maddock + * + * Use, modification and distribution are 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) + * + */ + +#include +#include +#include +#include + +#if defined(_MSC_VER) && !defined(_DLL) +#error "Mixing ICU with a static runtime doesn't work" +#endif + +int main() +{ + UErrorCode err = U_ZERO_ERROR; + UChar32 c = ::u_charFromName(U_UNICODE_CHAR_NAME, "GREEK SMALL LETTER ALPHA", &err); + return err; +} \ No newline at end of file diff --git a/example/Jamfile.v2 b/example/Jamfile.v2 index 295ef904..66bf2b48 100644 --- a/example/Jamfile.v2 +++ b/example/Jamfile.v2 @@ -10,9 +10,12 @@ project # There are unidentified linker problems on these platforms: mipspro-7.4:static sun-5.9:static + msvc:all + gcc:all + gcc:-Wextra + U_USING_ICU_NAMESPACE=0 ; - rule regex-test-run ( sources + : input * : name * ) { return [ diff --git a/example/grep/grep.cpp b/example/grep/grep.cpp index c181d8fa..f2becf12 100644 --- a/example/grep/grep.cpp +++ b/example/grep/grep.cpp @@ -13,9 +13,14 @@ #include #include #include -#include #include +#ifdef BOOST_MSVC +#pragma warning(disable:4512 4244) +#endif + +#include + namespace po = boost::program_options; int after_context; diff --git a/example/snippets/icu_example.cpp b/example/snippets/icu_example.cpp index 7dbd5b84..6d1fc3be 100644 --- a/example/snippets/icu_example.cpp +++ b/example/snippets/icu_example.cpp @@ -152,9 +152,15 @@ int main() assert(file == "d.h"); // Greek text extraction with u32regex_search: - U_NAMESPACE_QUALIFIER UnicodeString text = L"Some where in \x0391\x039D\x0395\x0398\x0391 2004"; + const UChar t[] = { + 'S', 'o', 'm', 'e', ' ', 'w', 'h', 'e', 'r', 'e', ' ', 'i', 'n', 0x0391, 0x039D, 0x0395, 0x0398, 0x0391, 0 + }; + const UChar g[] = { + 0x0391, 0x039D, 0x0395, 0x0398, 0x0391, 0 + }; + U_NAMESPACE_QUALIFIER UnicodeString text = t; U_NAMESPACE_QUALIFIER UnicodeString greek = extract_greek(text); - assert(greek == L"\x0391\x039D\x0395\x0398\x0391 2004"); + assert(greek == g); // extract currency symbols with associated value, use iterator interface: std::string text2 = " $100.23 or \xC2\xA3""198.12 "; // \xC2\xA3 is the pound sign encoded in UTF-8 diff --git a/example/snippets/partial_regex_grep.cpp b/example/snippets/partial_regex_grep.cpp index c3deda56..ed8a5923 100644 --- a/example/snippets/partial_regex_grep.cpp +++ b/example/snippets/partial_regex_grep.cpp @@ -61,7 +61,7 @@ void search(std::istream& is) std::memmove(buf, next_pos, leftover); // fill the rest from the stream: is.read(buf + leftover, size); - unsigned read = is.gcount(); + std::streamsize read = is.gcount(); // check to see if we've run out of text: have_more = read == size; // reset next_pos: diff --git a/example/snippets/partial_regex_iterate.cpp b/example/snippets/partial_regex_iterate.cpp index 9ebf33d8..aee78ab6 100644 --- a/example/snippets/partial_regex_iterate.cpp +++ b/example/snippets/partial_regex_iterate.cpp @@ -51,7 +51,7 @@ void search(std::istream& is) std::memmove(buf, next_pos, leftover); // fill the rest from the stream: is.read(buf + leftover, size); - unsigned read = is.gcount(); + std::streamsize read = is.gcount(); // check to see if we've run out of text: have_more = read == size; // reset next_pos: diff --git a/example/snippets/regex_grep_example_1.cpp b/example/snippets/regex_grep_example_1.cpp index 0f0f4ede..e0f3f3e8 100644 --- a/example/snippets/regex_grep_example_1.cpp +++ b/example/snippets/regex_grep_example_1.cpp @@ -89,7 +89,7 @@ void load_file(std::string& s, std::istream& is) { s.erase(); if(is.bad()) return; - s.reserve(is.rdbuf()->in_avail()); + s.reserve(static_cast(is.rdbuf()->in_avail())); char c; while(is.get(c)) { diff --git a/example/snippets/regex_grep_example_2.cpp b/example/snippets/regex_grep_example_2.cpp index 73b6bc2c..f012e566 100644 --- a/example/snippets/regex_grep_example_2.cpp +++ b/example/snippets/regex_grep_example_2.cpp @@ -84,7 +84,7 @@ void load_file(std::string& s, std::istream& is) { s.erase(); if(is.bad()) return; - s.reserve(is.rdbuf()->in_avail()); + s.reserve(static_cast(is.rdbuf()->in_avail())); char c; while(is.get(c)) { diff --git a/example/snippets/regex_grep_example_3.cpp b/example/snippets/regex_grep_example_3.cpp index b20a29aa..02aaa724 100644 --- a/example/snippets/regex_grep_example_3.cpp +++ b/example/snippets/regex_grep_example_3.cpp @@ -107,7 +107,7 @@ void load_file(std::string& s, std::istream& is) { s.erase(); if(is.bad()) return; - s.reserve(is.rdbuf()->in_avail()); + s.reserve(static_cast(is.rdbuf()->in_avail())); char c; while(is.get(c)) { diff --git a/example/snippets/regex_iterator_example.cpp b/example/snippets/regex_iterator_example.cpp index e0fab2fb..3fe1420d 100644 --- a/example/snippets/regex_iterator_example.cpp +++ b/example/snippets/regex_iterator_example.cpp @@ -72,7 +72,7 @@ void load_file(std::string& s, std::istream& is) { s.erase(); if(is.bad()) return; - s.reserve(is.rdbuf()->in_avail()); + s.reserve(static_cast(is.rdbuf()->in_avail())); char c; while(is.get(c)) { diff --git a/example/snippets/regex_merge_example.cpp b/example/snippets/regex_merge_example.cpp index a537189d..fcc4f5f7 100644 --- a/example/snippets/regex_merge_example.cpp +++ b/example/snippets/regex_merge_example.cpp @@ -42,7 +42,7 @@ void load_file(std::string& s, std::istream& is) { s.erase(); if(is.bad()) return; - s.reserve(is.rdbuf()->in_avail()); + s.reserve(static_cast(is.rdbuf()->in_avail())); char c; while(is.get(c)) { diff --git a/example/snippets/regex_replace_example.cpp b/example/snippets/regex_replace_example.cpp index a864d79f..3120453c 100644 --- a/example/snippets/regex_replace_example.cpp +++ b/example/snippets/regex_replace_example.cpp @@ -42,7 +42,7 @@ void load_file(std::string& s, std::istream& is) { s.erase(); if(is.bad()) return; - s.reserve(is.rdbuf()->in_avail()); + s.reserve(static_cast(is.rdbuf()->in_avail())); char c; while(is.get(c)) { diff --git a/example/snippets/regex_search_example.cpp b/example/snippets/regex_search_example.cpp index 52a296b6..761a11b2 100644 --- a/example/snippets/regex_search_example.cpp +++ b/example/snippets/regex_search_example.cpp @@ -85,7 +85,7 @@ void load_file(std::string& s, std::istream& is) { s.erase(); if(is.bad()) return; - s.reserve(is.rdbuf()->in_avail()); + s.reserve(static_cast(is.rdbuf()->in_avail())); char c; while(is.get(c)) { diff --git a/example/snippets/regex_split_example_2.cpp b/example/snippets/regex_split_example_2.cpp index 7687334a..205e588c 100644 --- a/example/snippets/regex_split_example_2.cpp +++ b/example/snippets/regex_split_example_2.cpp @@ -33,7 +33,7 @@ void load_file(std::string& s, std::istream& is) // // attempt to grow string buffer to match file size, // this doesn't always work... - s.reserve(is.rdbuf()->in_avail()); + s.reserve(static_cast(is.rdbuf()->in_avail())); char c; while(is.get(c)) { diff --git a/example/snippets/regex_token_iterator_eg_2.cpp b/example/snippets/regex_token_iterator_eg_2.cpp index fa6d2500..e3e43de9 100644 --- a/example/snippets/regex_token_iterator_eg_2.cpp +++ b/example/snippets/regex_token_iterator_eg_2.cpp @@ -32,7 +32,7 @@ void load_file(std::string& s, std::istream& is) // // attempt to grow string buffer to match file size, // this doesn't always work... - s.reserve(is.rdbuf()->in_avail()); + s.reserve(static_cast(is.rdbuf()->in_avail())); char c; while(is.get(c)) { diff --git a/include/boost/regex/icu.hpp b/include/boost/regex/icu.hpp index c8770c6d..e9a55c0c 100644 --- a/include/boost/regex/icu.hpp +++ b/include/boost/regex/icu.hpp @@ -27,6 +27,10 @@ #include #include +#ifdef BOOST_MSVC +#pragma warning (push) +#pragma warning (disable: 4251) +#endif namespace boost{ @@ -1015,6 +1019,10 @@ inline U_NAMESPACE_QUALIFIER UnicodeString u32regex_replace(const U_NAMESPACE_QU } // namespace boost. +#ifdef BOOST_MSVC +#pragma warning (pop) +#endif + #include #include diff --git a/include/boost/regex/v4/regex_workaround.hpp b/include/boost/regex/v4/regex_workaround.hpp index 06527f1a..46a8a8d3 100644 --- a/include/boost/regex/v4/regex_workaround.hpp +++ b/include/boost/regex/v4/regex_workaround.hpp @@ -149,7 +149,37 @@ namespace boost{ namespace re_detail{ { return stdext::unchecked_equal(first, last, with); } - +#elif BOOST_WORKAROUND(BOOST_MSVC, > 1500) + // + // MSVC 10 will either emit warnings or else refuse to compile + // code that makes perfectly legitimate use of std::copy, when + // the OutputIterator type is a user-defined class (apparently all user + // defined iterators are "unsafe"). What's more Microsoft have removed their + // non-standard "unchecked" versions, even though their still in the MS + // documentation!! Work around this as best we can: + // + template + inline OutputIterator copy( + InputIterator first, + InputIterator last, + OutputIterator dest + ) + { + while(first != last) + *dest++ = *first++; + return dest; + } + template + inline bool equal( + InputIterator1 first, + InputIterator1 last, + InputIterator2 with + ) + { + while(first != last) + if(*first++ != *with++) return false; + return true; + } #else using std::copy; using std::equal; diff --git a/include/boost/regex/v4/u32regex_token_iterator.hpp b/include/boost/regex/v4/u32regex_token_iterator.hpp index c47a2192..4039494d 100644 --- a/include/boost/regex/v4/u32regex_token_iterator.hpp +++ b/include/boost/regex/v4/u32regex_token_iterator.hpp @@ -292,7 +292,7 @@ template inline u32regex_token_iterator::const_iterator> make_u32regex_token_iterator(const std::basic_string& p, const u32regex& e, int submatch = 0, regex_constants::match_flag_type m = regex_constants::match_default) { typedef typename std::basic_string::const_iterator iter_type; - return u32regex_token_iterator(p.begin(), p.end(), e, m); + return u32regex_token_iterator(p.begin(), p.end(), e, submatch, m); } inline u32regex_token_iterator make_u32regex_token_iterator(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, int submatch = 0, regex_constants::match_flag_type m = regex_constants::match_default) { diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 40847731..13794cd5 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -9,9 +9,15 @@ project shared:BOOST_REGEX_DYN_LINK=1 msvc-7.1:TEST_MFC=1 msvc-7.0:TEST_MFC=1 + msvc:on # There are unidentified linker problems on these platforms: mipspro-7.4:static sun-5.9:static + msvc:all + gcc:all + gcc:-Wextra + gcc:-Wshadow + U_USING_ICU_NAMESPACE=0 ; # @@ -135,4 +141,4 @@ test-suite regex ] ; - +build-project ../example ; diff --git a/test/c_compiler_checks/posix_api_check.c b/test/c_compiler_checks/posix_api_check.c index b7498aaa..9b72a131 100644 --- a/test/c_compiler_checks/posix_api_check.c +++ b/test/c_compiler_checks/posix_api_check.c @@ -35,7 +35,7 @@ int main() regex_tA re; int result; result = regcompA(&re, expression, REG_AWK); - if(result > REG_NOERROR) + if(result > (int)REG_NOERROR) { char buf[256]; regerrorA(result, &re, buf, sizeof(buf)); @@ -46,7 +46,7 @@ int main() matches[0].rm_so = 0; matches[0].rm_eo = strlen(text); result = regexecA(&re, text, 1, matches, REG_NOTBOL | REG_NOTEOL | REG_STARTEND); - if(result > REG_NOERROR) + if(result > (int)REG_NOERROR) { char buf[256]; regerrorA(result, &re, buf, sizeof(buf)); diff --git a/test/c_compiler_checks/wide_posix_api_check.c b/test/c_compiler_checks/wide_posix_api_check.c index c55113e8..c9ab85bb 100644 --- a/test/c_compiler_checks/wide_posix_api_check.c +++ b/test/c_compiler_checks/wide_posix_api_check.c @@ -45,11 +45,11 @@ int main() char nbuf[256]; int i; result = regcomp(&re, expression, REG_AWK); - if(result > REG_NOERROR) + if(result > (int)REG_NOERROR) { regerror(result, &re, buf, sizeof(buf)); for(i = 0; i < 256; ++i) - nbuf[i] = buf[i]; + nbuf[i] = (char)(buf[i]); printf(nbuf); return result; } @@ -61,11 +61,11 @@ int main() matches[0].rm_so = 0; matches[0].rm_eo = wcslen(text); result = regexec(&re, text, 1, matches, REG_NOTBOL | REG_NOTEOL | REG_STARTEND); - if(result > REG_NOERROR) + if(result > (int)REG_NOERROR) { regerror(result, &re, buf, sizeof(buf)); for(i = 0; i < 256; ++i) - nbuf[i] = buf[i]; + nbuf[i] = (char)(buf[i]); printf(nbuf); regfree(&re); return result; diff --git a/test/regress/main.cpp b/test/regress/main.cpp index e741db50..50315794 100644 --- a/test/regress/main.cpp +++ b/test/regress/main.cpp @@ -33,9 +33,14 @@ int* get_array_data(); int error_count = 0; +#ifndef TEST_THREADS #define RUN_TESTS(name) \ std::cout << "Running test case \"" #name "\".\n";\ name(); +#else +#define RUN_TESTS(name) \ + name(); +#endif void run_tests() diff --git a/test/unicode/unicode_iterator_test.cpp b/test/unicode/unicode_iterator_test.cpp index a6f267bb..315a7690 100644 --- a/test/unicode/unicode_iterator_test.cpp +++ b/test/unicode/unicode_iterator_test.cpp @@ -94,7 +94,7 @@ void test(const std::vector< ::boost::uint32_t>& v) std::copy(u32to16type(v.begin()), u32to16type(v.end()), std::back_inserter(v16)); #endif #ifndef BOOST_NO_STD_DISTANCE - BOOST_CHECK_EQUAL(std::distance(u32to16type(v.begin()), u32to16type(v.end())), v16.size()); + BOOST_CHECK_EQUAL((std::size_t)std::distance(u32to16type(v.begin()), u32to16type(v.end())), v16.size()); #endif #if !defined(BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS) v32.assign(u16to32type(v16.begin()), u16to32type(v16.end())); @@ -103,7 +103,7 @@ void test(const std::vector< ::boost::uint32_t>& v) std::copy(u16to32type(v16.begin()), u16to32type(v16.end()), std::back_inserter(v32)); #endif #ifndef BOOST_NO_STD_DISTANCE - BOOST_CHECK_EQUAL(std::distance(u16to32type(v16.begin()), u16to32type(v16.end())), v32.size()); + BOOST_CHECK_EQUAL((std::size_t)std::distance(u16to32type(v16.begin()), u16to32type(v16.end())), v32.size()); #endif BOOST_CHECK_EQUAL(v.size(), v32.size()); i = v.begin(); @@ -117,12 +117,12 @@ void test(const std::vector< ::boost::uint32_t>& v) #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_STD_ITERATOR) && !defined(_RWSTD_NO_CLASS_PARTIAL_SPEC) v16.assign(ru32to16type(u32to16type(v.end())), ru32to16type(u32to16type(v.begin()))); #ifndef BOOST_NO_STD_DISTANCE - BOOST_CHECK_EQUAL(std::distance(ru32to16type(u32to16type(v.end())), ru32to16type(u32to16type(v.begin()))), v16.size()); + BOOST_CHECK_EQUAL((std::size_t)std::distance(ru32to16type(u32to16type(v.end())), ru32to16type(u32to16type(v.begin()))), v16.size()); #endif std::reverse(v16.begin(), v16.end()); v32.assign(ru16to32type(u16to32type(v16.end())), ru16to32type(u16to32type(v16.begin()))); #ifndef BOOST_NO_STD_DISTANCE - BOOST_CHECK_EQUAL(std::distance(ru16to32type(u16to32type(v16.end())), ru16to32type(u16to32type(v16.begin()))), v32.size()); + BOOST_CHECK_EQUAL((std::size_t)std::distance(ru16to32type(u16to32type(v16.end())), ru16to32type(u16to32type(v16.begin()))), v32.size()); #endif BOOST_CHECK_EQUAL(v.size(), v32.size()); std::reverse(v32.begin(), v32.end()); @@ -142,7 +142,7 @@ void test(const std::vector< ::boost::uint32_t>& v) std::copy(u32to8type(v.begin()), u32to8type(v.end()), std::back_inserter(v8)); #endif #ifndef BOOST_NO_STD_DISTANCE - BOOST_CHECK_EQUAL(std::distance(u32to8type(v.begin()), u32to8type(v.end())), v8.size()); + BOOST_CHECK_EQUAL((std::size_t)std::distance(u32to8type(v.begin()), u32to8type(v.end())), v8.size()); #endif #if !defined(BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS) v32.assign(u8to32type(v8.begin()), u8to32type(v8.end())); @@ -151,7 +151,7 @@ void test(const std::vector< ::boost::uint32_t>& v) std::copy(u8to32type(v8.begin()), u8to32type(v8.end()), std::back_inserter(v32)); #endif #ifndef BOOST_NO_STD_DISTANCE - BOOST_CHECK_EQUAL(std::distance(u8to32type(v8.begin()), u8to32type(v8.end())), v32.size()); + BOOST_CHECK_EQUAL((std::size_t)std::distance(u8to32type(v8.begin()), u8to32type(v8.end())), v32.size()); #endif BOOST_CHECK_EQUAL(v.size(), v32.size()); i = v.begin(); @@ -165,12 +165,12 @@ void test(const std::vector< ::boost::uint32_t>& v) #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_STD_ITERATOR) && !defined(_RWSTD_NO_CLASS_PARTIAL_SPEC) v8.assign(ru32to8type(u32to8type(v.end())), ru32to8type(u32to8type(v.begin()))); #ifndef BOOST_NO_STD_DISTANCE - BOOST_CHECK_EQUAL(std::distance(ru32to8type(u32to8type(v.end())), ru32to8type(u32to8type(v.begin()))), v8.size()); + BOOST_CHECK_EQUAL((std::size_t)std::distance(ru32to8type(u32to8type(v.end())), ru32to8type(u32to8type(v.begin()))), v8.size()); #endif std::reverse(v8.begin(), v8.end()); v32.assign(ru8to32type(u8to32type(v8.end())), ru8to32type(u8to32type(v8.begin()))); #ifndef BOOST_NO_STD_DISTANCE - BOOST_CHECK_EQUAL(std::distance(ru8to32type(u8to32type(v8.end())), ru8to32type(u8to32type(v8.begin()))), v32.size()); + BOOST_CHECK_EQUAL((std::size_t)std::distance(ru8to32type(u8to32type(v8.end())), ru8to32type(u8to32type(v8.begin()))), v32.size()); #endif BOOST_CHECK_EQUAL(v.size(), v32.size()); std::reverse(v32.begin(), v32.end()); From 132c39a42cf9d7f0b03d8d39ad5d42bd0125ea63 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 15 May 2010 09:15:20 +0000 Subject: [PATCH 35/77] Update regex_match requirements. Fixes #4215. [SVN r61976] --- doc/history.qbk | 15 +++ .../background_information/examples.html | 6 +- .../background_information/history.html | 36 +++++-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 ++-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 ++-- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 82 ++++++++++++++-- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 ++++++------- doc/html/boost_regex/syntax/basic_syntax.html | 44 ++++----- doc/html/boost_regex/syntax/perl_syntax.html | 96 +++++++++---------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/match_result.qbk | 50 +++++++++- 33 files changed, 348 insertions(+), 199 deletions(-) diff --git a/doc/history.qbk b/doc/history.qbk index e3a0a3dd..176140d6 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -15,6 +15,21 @@ Currently open issues can be viewed [@https://svn.boost.org/trac/boost/query?sta All issues including closed ones can be viewed [@https://svn.boost.org/trac/boost/query?status=assigned&status=closed&status=new&status=reopened&component=regex&order=priority&col=id&col=summary&col=status&col=type&col=milestone&col=component here]. +[h4 Boost 1.44] + +Fixed issues: +[@https://svn.boost.org/trac/boost/ticket/4215 #4215], +[@https://svn.boost.org/trac/boost/ticket/4212 #4212], +[@https://svn.boost.org/trac/boost/ticket/4191 #4191], +[@https://svn.boost.org/trac/boost/ticket/4132 #4132], +[@https://svn.boost.org/trac/boost/ticket/4123 #4123], +[@https://svn.boost.org/trac/boost/ticket/4114 #4114], +[@https://svn.boost.org/trac/boost/ticket/4036 #4036], +[@https://svn.boost.org/trac/boost/ticket/4020 #4020], +[@https://svn.boost.org/trac/boost/ticket/3941 #3941], +[@https://svn.boost.org/trac/boost/ticket/3902 #3902], +[@https://svn.boost.org/trac/boost/ticket/3890 #3890] + [h4 Boost 1.42] * Added support for Functors rather than strings as format expressions. diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index ce903688..36dd5a30 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs

    - + Test Programs
    @@ -107,7 +107,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -133,7 +133,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 0c3cb23c..15470b00 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -26,7 +26,7 @@ History

    - New issues should be submitted at svn.boost.org + New issues should be submitted at svn.boost.org - don't forget to include your email address in the ticket!

    @@ -35,8 +35,26 @@

    All issues including closed ones can be viewed here.

    +
    + + Boost + 1.44 +
    +

    + Fixed issues: #4215, + #4212, + #4191, + #4132, + #4123, + #4114, + #4036, + #4020, + #3941, + #3902, + #3890 +

    - + Boost 1.42
    @@ -65,7 +83,7 @@
    - + Boost 1.40
    @@ -74,7 +92,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -101,7 +119,7 @@
    - + Boost 1.34
    @@ -124,7 +142,7 @@
    - + Boost 1.33.1
    @@ -194,7 +212,7 @@
    - + Boost 1.33.0
    @@ -249,7 +267,7 @@
    - + Boost 1.32.1
    @@ -257,7 +275,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 4b8f962c..31ce35f6 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 17ce4aca..3a443a23 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -73,7 +73,7 @@ the Unicode requirements below.

    - + POSIX

    @@ -93,7 +93,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 7406acec..eb9398ff 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index b017ac87..283cef6d 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index d3e3325e..e5cc3919 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -302,7 +302,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index c05df79a..02cef4bc 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index a0ab9a47..92d3b6c3 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
      basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -727,7 +727,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -829,7 +829,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1043,7 +1043,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 61571515..01cb63c7 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -381,7 +381,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index e0aa3d8b..7769e42c 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 2661dae8..c2f2bc40 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 58e7eb12..afceff37 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 63a5ac15..b547b6f6 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    @@ -406,14 +406,21 @@ template <class charT, class Traits, class A> difference_type length(const std::basic_string<charT, Traits, A>&)const; +

    + Requires: that the match_results object + has been initialized as a result of a successful call to regex_search or regex_match or was returned from + a regex_iterator, + and that the underlying iterators have not been subsequently invalidated. + Will raise a std::logic_error if the match_results object + was not initialized. +

    Effects: Returns the length of sub-expression sub, that is to say: (*this)[sub].length().

    The overloads that accept a string refer to a named sub-expression n. - In the event that there is no such named sub-expression then returns an empty - string. + In the event that there is no such named sub-expression then returns zero.

    The template overloads of this function, allow the string and/or character @@ -434,6 +441,14 @@ template <class charT, class Traits, class A> difference_type position(const std::basic_string<charT, Traits, A>&)const; +

    + Requires: that the match_results object + has been initialized as a result of a successful call to regex_search or regex_match or was returned from + a regex_iterator, + and that the underlying iterators have not been subsequently invalidated. + Will raise a std::logic_error if the match_results object + was not initialized. +

    Effects: Returns the starting location of sub-expression sub, or -1 if sub @@ -443,8 +458,7 @@

    The overloads that accept a string refer to a named sub-expression n. - In the event that there is no such named sub-expression then returns an empty - string. + In the event that there is no such named sub-expression then returns -1.

    The template overloads of this function, allow the string and/or character @@ -467,6 +481,14 @@ template <class charT, class Traits, class A> string_type str(const std::basic_string<charT, Traits, A>& sub)const; +

    + Requires: that the match_results object + has been initialized as a result of a successful call to regex_search or regex_match or was returned from + a regex_iterator, + and that the underlying iterators have not been subsequently invalidated. + Will raise a std::logic_error if the match_results object + was not initialized. +

    Effects: Returns sub-expression sub as a string: string_type((*this)[sub]). @@ -497,6 +519,14 @@ template <class charT, class Traits, class A> const_reference operator[](const std::basic_string<charT, Traits, A>& n) const; +

    + Requires: that the match_results object + has been initialized as a result of a successful call to regex_search or regex_match or was returned from + a regex_iterator, + and that the underlying iterators have not been subsequently invalidated. + Will raise a std::logic_error if the match_results object + was not initialized. +

    Effects: Returns a reference to the sub_match object representing the character sequence that matched marked sub-expression @@ -527,6 +557,14 @@

    const_reference prefix()const;
     
    +

    + Requires: that the match_results object + has been initialized as a result of a successful call to regex_search or regex_match or was returned from + a regex_iterator, + and that the underlying iterators have not been subsequently invalidated. + Will raise a std::logic_error if the match_results object + was not initialized. +

    Effects: Returns a reference to the sub_match object representing the character sequence from the start of the string being @@ -536,6 +574,14 @@

    const_reference suffix()const;
     
    +

    + Requires: that the match_results object + has been initialized as a result of a successful call to regex_search or regex_match or was returned from + a regex_iterator, + and that the underlying iterators have not been subsequently invalidated. + Will raise a std::logic_error if the match_results object + was not initialized. +

    Effects: Returns a reference to the sub_match object representing the character sequence from the end of the match found @@ -584,6 +630,14 @@ want to pass function objects with internal state might want to use Boost.Ref to wrap the object so that it's passed by reference.

    +

    + Requires: that the match_results object + has been initialized as a result of a successful call to regex_search or regex_match or was returned from + a regex_iterator, + and that the underlying iterators have not been subsequently invalidated. + Will raise a std::logic_error if the match_results object + was not initialized. +

    Effects: If fmt is either a null-terminated string, or a container of char_type's, @@ -643,6 +697,14 @@ to *out, and then return the new OutputIterator position.

    +

    + Requires: that the match_results object + has been initialized as a result of a successful call to regex_search or regex_match or was returned from + a regex_iterator, + and that the underlying iterators have not been subsequently invalidated. + Will raise a std::logic_error if the match_results object + was not initialized. +

    Effects: If fmt is either a null-terminated string, or a container of char_type's, @@ -716,6 +778,14 @@

    const capture_sequence_type& captures(std::size_t i)const; 
     
    +

    + Requires: that the match_results object + has been initialized as a result of a successful call to regex_search or regex_match or was returned from + a regex_iterator, + and that the underlying iterators have not been subsequently invalidated. + Will raise a std::logic_error if the match_results object + was not initialized. +

    Effects: returns a sequence containing all the captures obtained for sub-expression i. diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 81c8e7cd..eace8fdd 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 32e20a8d..c6e20800 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 805adf6c..325379c9 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index cedd2580..bbed7d5c 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 4117a6f7..6a5533d2 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

    - + regcomp

    @@ -379,7 +379,7 @@

    - + regerror

    @@ -467,7 +467,7 @@

    - + regexec

    @@ -537,7 +537,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 25b27409..e8d29d44 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -436,7 +436,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 92e54980..b4e44f9f 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -360,7 +360,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index a3a8e7bb..c739efd5 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -199,7 +199,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 36edb25d..105d53af 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -355,7 +355,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index a2af4f26..cf389fbe 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -383,7 +383,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 7e3c06b6..92946119 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index cc49dc1a..3c906aea 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members

    @@ -473,7 +473,7 @@

    - + sub_match non-member operators
    @@ -1008,7 +1008,7 @@ + m2.str().

    - + Stream inserter

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 97b80722..2c800c43 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1101,7 +1101,7 @@ cab
    - + What Gets Matched
    @@ -1111,11 +1111,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1136,7 +1136,7 @@ cab used with the -E option.

    - + awk

    @@ -1150,7 +1150,7 @@ cab these by default anyway.

    - + Options

    @@ -1163,7 +1163,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index ff4e7d54..0b45b993 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 1b68cffe..269c0370 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Pocessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1048,7 +1048,7 @@ (?=\n?\z).

    - + Continuation Escape
    @@ -1060,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1073,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1125,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1168,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1177,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1222,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1249,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1321,7 +1321,7 @@
    - + Operator precedence
    @@ -1356,7 +1356,7 @@

    - + What gets matched

    @@ -1531,7 +1531,7 @@

    - + Variations

    @@ -1540,7 +1540,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1552,7 +1552,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1564,7 +1564,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 978001d7..1c47471f 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index c4f7fee0..b2334c42 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: March 17, 2010 at 16:59:52 GMT

    Last revised: May 15, 2010 at 09:09:46 GMT


    diff --git a/doc/match_result.qbk b/doc/match_result.qbk index 4238de92..eb4b7b69 100644 --- a/doc/match_result.qbk +++ b/doc/match_result.qbk @@ -221,11 +221,17 @@ stored in *this. template difference_type length(const std::basic_string&)const; + +[*Requires]: that the match_results object has been initialized as a result of a +successful call to [regex_search] or [regex_match] or was returned from a [regex_iterator], and +that the underlying iterators have not been subsequently invalidated. Will raise a +`std::logic_error` if the match_results object was not initialized. + [*Effects]: Returns the length of sub-expression /sub/, that is to say: `(*this)[sub].length()`. The overloads that accept a string refer to a named sub-expression /n/. -In the event that there is no such named sub-expression then returns an empty string. +In the event that there is no such named sub-expression then returns zero. The template overloads of this function, allow the string and\/or character type to be different from the character type of the underlying sequence and\/or regular expression: @@ -244,12 +250,17 @@ Unicode character type. template difference_type position(const std::basic_string&)const; +[*Requires]: that the match_results object has been initialized as a result of a +successful call to [regex_search] or [regex_match] or was returned from a [regex_iterator], and +that the underlying iterators have not been subsequently invalidated. Will raise a +`std::logic_error` if the match_results object was not initialized. + [*Effects]: Returns the starting location of sub-expression /sub/, or -1 if /sub/ was not matched. Note that if this represents a partial match , then `position()` will return the location of the partial match even though `(*this)[0].matched` is false. The overloads that accept a string refer to a named sub-expression /n/. -In the event that there is no such named sub-expression then returns an empty string. +In the event that there is no such named sub-expression then returns -1. The template overloads of this function, allow the string and\/or character type to be different from the character type of the underlying sequence and\/or regular expression: @@ -271,6 +282,11 @@ Unicode character type. template string_type str(const std::basic_string& sub)const; +[*Requires]: that the match_results object has been initialized as a result of a +successful call to [regex_search] or [regex_match] or was returned from a [regex_iterator], and +that the underlying iterators have not been subsequently invalidated. Will raise a +`std::logic_error` if the match_results object was not initialized. + [*Effects]: Returns sub-expression /sub/ as a string: `string_type((*this)[sub])`. The overloads that accept a string, return the string that matched the named sub-expression /n/. @@ -296,6 +312,11 @@ Unicode character type. template const_reference operator[](const std::basic_string& n) const; +[*Requires]: that the match_results object has been initialized as a result of a +successful call to [regex_search] or [regex_match] or was returned from a [regex_iterator], and +that the underlying iterators have not been subsequently invalidated. Will raise a +`std::logic_error` if the match_results object was not initialized. + [*Effects]: Returns a reference to the [sub_match] object representing the character sequence that matched marked sub-expression /n/. If `n == 0` then returns a reference to a [sub_match] object representing the character sequence that @@ -321,6 +342,11 @@ Unicode character type. const_reference prefix()const; +[*Requires]: that the match_results object has been initialized as a result of a +successful call to [regex_search] or [regex_match] or was returned from a [regex_iterator], and +that the underlying iterators have not been subsequently invalidated. Will raise a +`std::logic_error` if the match_results object was not initialized. + [*Effects]: Returns a reference to the [sub_match] object representing the character sequence from the start of the string being matched or searched, to the start of the match found. @@ -330,6 +356,11 @@ start of the match found. const_reference suffix()const; +[*Requires]: that the match_results object has been initialized as a result of a +successful call to [regex_search] or [regex_match] or was returned from a [regex_iterator], and +that the underlying iterators have not been subsequently invalidated. Will raise a +`std::logic_error` if the match_results object was not initialized. + [*Effects]: Returns a reference to the [sub_match] object representing the character sequence from the end of the match found to the end of the string being matched or searched. @@ -373,6 +404,11 @@ OutputIterator position. Note that if the formatter is a functor, then it is might want to use [@../../../../doc/html/ref.html Boost.Ref] to wrap the object so that it's passed by reference. +[*Requires]: that the match_results object has been initialized as a result of a +successful call to [regex_search] or [regex_match] or was returned from a [regex_iterator], and +that the underlying iterators have not been subsequently invalidated. Will raise a +`std::logic_error` if the match_results object was not initialized. + [*Effects]: If `fmt` is either a null-terminated string, or a container of `char_type`'s, then copies the character sequence `[fmt.begin(), fmt.end())` to `OutputIterator` /out/. For each format specifier or escape sequence in @@ -414,6 +450,11 @@ replacement text, or either `fmt(*this, out)` or `fmt(*this, out, flags)`, both which write the replacement text to `*out`, and then return the new OutputIterator position. +[*Requires]: that the match_results object has been initialized as a result of a +successful call to [regex_search] or [regex_match] or was returned from a [regex_iterator], and +that the underlying iterators have not been subsequently invalidated. Will raise a +`std::logic_error` if the match_results object was not initialized. + [*Effects]: If `fmt` is either a null-terminated string, or a container of `char_type`'s, then copies the string /fmt/: For each format specifier or @@ -465,6 +506,11 @@ rely on that. const capture_sequence_type& captures(std::size_t i)const; +[*Requires]: that the match_results object has been initialized as a result of a +successful call to [regex_search] or [regex_match] or was returned from a [regex_iterator], and +that the underlying iterators have not been subsequently invalidated. Will raise a +`std::logic_error` if the match_results object was not initialized. + [*Effects]: returns a sequence containing all the captures obtained for sub-expression i. [*Returns]: `(*this)[i].captures();` From e3dfbd0953eaaeb2a1588d6720dfe23513400f63 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 21 May 2010 16:20:15 +0000 Subject: [PATCH 36/77] Fix allocator concept to match C++03 requirements in table 32. [SVN r62120] --- include/boost/regex/concepts.hpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 016cf0f2..6ef88642 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -106,14 +106,9 @@ public: allocator_architype(); allocator_architype(const allocator_architype&); -#if defined(BOOST_MSVC) && (BOOST_MSVC == 1600) - // - // This doesn't appear to be part of the allocator requirements - // in the std, but is required by std::vector in VC10 :-( - // + template allocator_architype(const allocator_architype&); -#endif void construct(pointer, const_reference); void destroy(pointer); From 2e41f1352687727e5c562873e5610f11ece2fdc2 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 30 May 2010 17:24:45 +0000 Subject: [PATCH 37/77] Change regex to make use of new Boost.Config macros. [SVN r62331] --- include/boost/regex/config.hpp | 19 +++++++++++-------- include/boost/regex/v4/instances.hpp | 8 ++++++-- test/c_compiler_checks/posix_api_check.c | 2 +- 3 files changed, 18 insertions(+), 11 deletions(-) diff --git a/include/boost/regex/config.hpp b/include/boost/regex/config.hpp index e4b21384..d55881a3 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -186,16 +186,19 @@ * ****************************************************************************/ -#if defined(BOOST_HAS_DECLSPEC) && (defined(BOOST_REGEX_DYN_LINK) || defined(BOOST_ALL_DYN_LINK)) && !defined(BOOST_REGEX_STATIC_LINK) -# if defined(BOOST_REGEX_SOURCE) -# define BOOST_REGEX_DECL __declspec(dllexport) -# define BOOST_REGEX_BUILD_DLL -# else -# define BOOST_REGEX_DECL __declspec(dllimport) -# endif +#ifndef BOOST_SYMBOL_EXPORT +# define BOOST_SYMBOL_EXPORT +# define BOOST_SYMBOL_IMPORT #endif -#ifndef BOOST_REGEX_DECL +#if (defined(BOOST_REGEX_DYN_LINK) || defined(BOOST_ALL_DYN_LINK)) && !defined(BOOST_REGEX_STATIC_LINK) +# if defined(BOOST_REGEX_SOURCE) +# define BOOST_REGEX_DECL BOOST_SYMBOL_EXPORT +# define BOOST_REGEX_BUILD_DLL +# else +# define BOOST_REGEX_DECL BOOST_SYMBOL_IMPORT +# endif +#else # define BOOST_REGEX_DECL #endif diff --git a/include/boost/regex/v4/instances.hpp b/include/boost/regex/v4/instances.hpp index d12dc6b2..c62d136f 100644 --- a/include/boost/regex/v4/instances.hpp +++ b/include/boost/regex/v4/instances.hpp @@ -118,10 +118,14 @@ template class BOOST_REGEX_TEMPLATE_DECL ::boost::re_detail::perl_matcher< std:: #undef BOOST_REGEX_TEMPLATE_DECL -#elif (defined(__GNUC__) && (__GNUC__ >= 3)) +#elif (defined(__GNUC__) && (__GNUC__ >= 3)) || !defined(BOOST_NO_EXTERN_TEMPLATE) # ifndef BOOST_REGEX_INSTANTIATE -# define template __extension__ extern template +# ifdef __GNUC__ +# define template __extension__ extern template +# else +# define template extern template +# endif # endif #if !defined(BOOST_NO_STD_LOCALE) && !defined(BOOST_REGEX_ICU_INSTANCES) diff --git a/test/c_compiler_checks/posix_api_check.c b/test/c_compiler_checks/posix_api_check.c index 9b72a131..c12525c8 100644 --- a/test/c_compiler_checks/posix_api_check.c +++ b/test/c_compiler_checks/posix_api_check.c @@ -54,7 +54,7 @@ int main() regfreeA(&re); return result; } - assert(matches[0].rm_so == matches[0].rm_eo == 1); + assert((matches[0].rm_so == matches[0].rm_eo) && (matches[0].rm_eo == 1)); regfreeA(&re); printf("no errors found\n"); return 0; From eaaf00a92491cf5dc321aa87ade0e9edee96af52 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 6 Jun 2010 12:38:26 +0000 Subject: [PATCH 38/77] Fix bug in branch reset code. [SVN r62478] --- include/boost/regex/v4/basic_regex_parser.hpp | 3 +++ test/regress/test_perl_ex.cpp | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index 3ea4d645..172b53a0 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -1906,7 +1906,9 @@ bool basic_regex_parser::parse_perl_extension() m_has_case_change = false; charT name_delim; int mark_reset = m_mark_reset; + int max_mark = m_max_mark; m_mark_reset = -1; + m_max_mark = m_mark_count; int v; // // select the actual extension used: @@ -2536,6 +2538,7 @@ option_group_jump: m_mark_count = m_max_mark; } m_mark_reset = mark_reset; + m_max_mark = max_mark; if(markid > 0) diff --git a/test/regress/test_perl_ex.cpp b/test/regress/test_perl_ex.cpp index d58da2a7..27d5cee4 100644 --- a/test/regress/test_perl_ex.cpp +++ b/test/regress/test_perl_ex.cpp @@ -674,6 +674,15 @@ void test_mark_resets() TEST_REGEX_SEARCH("^X(?7)(a)(?|(b)|(q)(r)(s))(c)(d)(Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, -1, -1, -1, -1, 4, 5, 5, 6, 6, 7, -2, -2)); TEST_REGEX_SEARCH("^X(?7)(a)(?|(b|(r)(s))|(q))(c)(d)(Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, -1, -1, -1, -1, 4, 5, 5, 6, 6, 7, -2, -2)); TEST_REGEX_SEARCH("^X(?7)(a)(?|(b|(?|(r)|(t))(s))|(q))(c)(d)(Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, -1, -1, -1, -1, 4, 5, 5, 6, 6, 7, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(?:((?:xyz)))|(123))", perl, "abc", match_default, make_array(0, 3, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(?:)((?:)xyz)|(123))", perl, "xyz", match_default, make_array(0, 3, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|((?:(x)|(y)|(z)))|(123))", perl, "y", match_default, make_array(0, 1, 0, 1, -1, -1, 0, 1, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|((?|(x)|(y)|(z)))|(123))", perl, "y", match_default, make_array(0, 1, 0, 1, 0, 1, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|((?|(x)|(y)|(z)))|(123))", perl, "abc", match_default, make_array(0, 3, 0, 3, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|((?|(x)|(y)|(z)))|(123))", perl, "123", match_default, make_array(0, 3, 0, 3, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|((x)|(y)|(z))|(123))", perl, "z", match_default, make_array(0, 1, 0, 1, -1, -1, -1, -1, 0, 1, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|((x)|(y)|(z))|(123))", perl, "abc", match_default, make_array(0, 3, 0, 3, -1, -1, -1, -1, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|((x)|(y)|(z))|(123))", perl, "123", match_default, make_array(0, 3, 0, 3, -1, -1, -1, -1, -1, -1, -2, -2)); } void test_recursion() From 528cf2abb9d8f44afc4e264f6c31d5e735a0956a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 8 Jun 2010 12:41:41 +0000 Subject: [PATCH 39/77] Some lookbehind assertions were accepted when they should not have been. Fixes #4309. [SVN r62563] --- include/boost/regex/v4/basic_regex_creator.hpp | 8 ++++++++ test/regress/test_perl_ex.cpp | 6 ++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/include/boost/regex/v4/basic_regex_creator.hpp b/include/boost/regex/v4/basic_regex_creator.hpp index fe971ed5..f3bc0061 100644 --- a/include/boost/regex/v4/basic_regex_creator.hpp +++ b/include/boost/regex/v4/basic_regex_creator.hpp @@ -1039,6 +1039,14 @@ int basic_regex_creator::calculate_backstep(re_syntax_base* state case syntax_element_jump: state = static_cast(state)->alt.p; continue; + case syntax_element_alt: + { + int r1 = calculate_backstep(state->next.p); + int r2 = calculate_backstep(static_cast(state)->alt.p); + if((r1 < 0) || (r1 != r2)) + return -1; + return result + r1; + } default: break; } diff --git a/test/regress/test_perl_ex.cpp b/test/regress/test_perl_ex.cpp index 27d5cee4..05abf22d 100644 --- a/test/regress/test_perl_ex.cpp +++ b/test/regress/test_perl_ex.cpp @@ -132,6 +132,8 @@ void test_conditionals() TEST_INVALID_REGEX("(? Date: Fri, 11 Jun 2010 11:52:25 +0000 Subject: [PATCH 40/77] Get gcc linking options consistent. [SVN r62796] --- test/Jamfile.v2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 13794cd5..cde1be0b 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -18,6 +18,9 @@ project gcc:-Wextra gcc:-Wshadow U_USING_ICU_NAMESPACE=0 + gcc-mw:static + gcc-mingw:static + gcc-cygwin:static ; # From 7754e9962f15efc7194f4bbc4c43c6084db46470 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 20 Jun 2010 18:00:48 +0000 Subject: [PATCH 41/77] Update various libraries' documentation build. Mostly to use the images and css files under doc/src instead of doc/html, usually be deleting the settings in order to use the defaults. Also add 'boost.root' to some builds in order to fix links which rely on it. [SVN r63146] --- doc/Jamfile.v2 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index e53a1592..47757c1a 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -27,10 +27,6 @@ boostbook standalone generate.section.toc.level=10 # Path for links to Boost: boost.root=../../../.. - # Path for libraries index: - boost.libraries=../../../../libs/libraries.htm - # Use the main Boost stylesheet: - html.stylesheet=../../../../doc/html/boostbook.css # PDF Options: # TOC Generation: this is needed for FOP-0.9 and later: From 1feaf060f9b841bb09bf424c1cebe521b573a02d Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 20 Jun 2010 18:04:58 +0000 Subject: [PATCH 42/77] A couple of link fixes. [SVN r63153] --- doc/history.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/history.qbk b/doc/history.qbk index 176140d6..36127ef9 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -8,7 +8,7 @@ [section:history History] -New issues should be submitted at [@http:svn.boost.org svn.boost.org] - don't forget to include your +New issues should be submitted at [@http://svn.boost.org svn.boost.org] - don't forget to include your email address in the ticket! Currently open issues can be viewed [@https://svn.boost.org/trac/boost/query?status=assigned&status=new&status=reopened&component=regex&order=priority&col=id&col=summary&col=status&col=type&col=milestone&col=component here]. From 5cef38cfc3712af1e60de367c46429521bbe9341 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 1 Jul 2010 15:55:48 +0000 Subject: [PATCH 43/77] Update the type_traits library to handle rvalue references. Add is_lvalue_reference and is_rvalue_reference traits. [SVN r63486] --- test/Jamfile.v2 | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index cde1be0b..343db03a 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -60,6 +60,30 @@ test_overloads.cpp test_operators.cpp ; +lib boost_regex_recursive : + ../src/c_regex_traits.cpp + ../src/cpp_regex_traits.cpp + ../src/cregex.cpp + ../src/fileiter.cpp + ../src/icu.cpp + ../src/instances.cpp + ../src/posix_api.cpp + ../src/regex.cpp + ../src/regex_debug.cpp + ../src/regex_raw_buffer.cpp + ../src/regex_traits_defaults.cpp + ../src/static_mutex.cpp + ../src/w32_regex_traits.cpp + ../src/wc_regex_traits.cpp + ../src/wide_posix_api.cpp + ../src/winstances.cpp + ../src/usinstances.cpp + : + BOOST_REGEX_RECURSIVE=1 + shared:BOOST_REGEX_DYN_LINK=1 + : + ; + local regress-sources = regress/$(R_SOURCE) ; test-suite regex @@ -142,6 +166,14 @@ test-suite regex : # test name captures_test ] + +[ run regress/$(R_SOURCE) .//boost_regex_recursive + ../build//icu_options + : # command line + : # input files + : # requirements + BOOST_REGEX_RECURSIVE=1 + : regex_regress_recursive ] ; - + build-project ../example ; From 73fc09f4a320c86379639920e8a64af218ad4231 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 8 Jul 2010 10:31:00 +0000 Subject: [PATCH 44/77] Set push and pop pragmas to be guarded by the same logic. [SVN r63740] --- include/boost/regex/v4/u32regex_token_iterator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/v4/u32regex_token_iterator.hpp b/include/boost/regex/v4/u32regex_token_iterator.hpp index 4039494d..4b0ac927 100644 --- a/include/boost/regex/v4/u32regex_token_iterator.hpp +++ b/include/boost/regex/v4/u32regex_token_iterator.hpp @@ -361,7 +361,7 @@ inline u32regex_token_iterator make_u32regex_token_iterator(const return u32regex_token_iterator(s.getBuffer(), s.getBuffer() + s.length(), e, submatch, m); } -#if BOOST_WORKAROUND(BOOST_MSVC, == 1310) +#if BOOST_WORKAROUND(BOOST_MSVC, > 1300) # pragma warning(pop) #endif #ifdef BOOST_HAS_ABI_HEADERS From 446b1d7c6e5442c25f6577cbe77928574b595f74 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 8 Jul 2010 22:49:58 +0000 Subject: [PATCH 45/77] Rebuild the regex documentation. [SVN r63768] --- .../boost_regex/background_information.html | 10 +- .../acknowledgements.html | 10 +- .../background_information/examples.html | 106 +- .../background_information/faq.html | 10 +- .../background_information/futher.html | 10 +- .../background_information/headers.html | 10 +- .../background_information/history.html | 453 ++--- .../background_information/locale.html | 1672 ++++++++--------- .../background_information/performance.html | 28 +- .../background_information/redist.html | 10 +- .../background_information/standards.html | 518 ++--- .../background_information/thread_safety.html | 10 +- doc/html/boost_regex/captures.html | 168 +- doc/html/boost_regex/configuration.html | 10 +- .../boost_regex/configuration/algorithm.html | 58 +- .../boost_regex/configuration/compiler.html | 10 +- .../boost_regex/configuration/linkage.html | 54 +- .../boost_regex/configuration/locale.html | 68 +- .../boost_regex/configuration/tuning.html | 122 +- doc/html/boost_regex/format.html | 10 +- .../format/boost_format_syntax.html | 454 ++--- doc/html/boost_regex/format/perl_format.html | 446 ++--- doc/html/boost_regex/format/sed_format.html | 196 +- doc/html/boost_regex/install.html | 108 +- .../introduction_and_overview.html | 10 +- doc/html/boost_regex/partial_matches.html | 154 +- doc/html/boost_regex/ref.html | 10 +- doc/html/boost_regex/ref/bad_expression.html | 14 +- doc/html/boost_regex/ref/basic_regex.html | 847 ++++----- doc/html/boost_regex/ref/concepts.html | 10 +- .../ref/concepts/charT_concept.html | 238 +-- .../ref/concepts/iterator_concepts.html | 10 +- .../ref/concepts/traits_concept.html | 574 +++--- .../ref/deprecated_interfaces.html | 10 +- .../ref/deprecated_interfaces/old_regex.html | 977 +++++----- .../deprecated_interfaces/regex_format.html | 84 +- .../ref/deprecated_interfaces/regex_grep.html | 10 +- .../deprecated_interfaces/regex_split.html | 10 +- doc/html/boost_regex/ref/error_type.html | 196 +- doc/html/boost_regex/ref/match_flag_type.html | 471 ++--- doc/html/boost_regex/ref/match_results.html | 349 ++-- doc/html/boost_regex/ref/non_std_strings.html | 10 +- .../boost_regex/ref/non_std_strings/icu.html | 10 +- .../ref/non_std_strings/icu/intro.html | 36 +- .../ref/non_std_strings/icu/unicode_algo.html | 16 +- .../ref/non_std_strings/icu/unicode_iter.html | 14 +- .../non_std_strings/icu/unicode_types.html | 10 +- .../ref/non_std_strings/mfc_strings.html | 10 +- .../non_std_strings/mfc_strings/mfc_algo.html | 20 +- .../mfc_strings/mfc_intro.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 14 +- .../mfc_strings/mfc_regex_create.html | 10 +- .../mfc_strings/mfc_regex_types.html | 10 +- doc/html/boost_regex/ref/posix.html | 404 ++-- doc/html/boost_regex/ref/regex_iterator.html | 281 ++- doc/html/boost_regex/ref/regex_match.html | 211 +-- doc/html/boost_regex/ref/regex_replace.html | 14 +- doc/html/boost_regex/ref/regex_search.html | 216 +-- .../boost_regex/ref/regex_token_iterator.html | 66 +- doc/html/boost_regex/ref/regex_traits.html | 63 +- doc/html/boost_regex/ref/sub_match.html | 303 +-- .../boost_regex/ref/syntax_option_type.html | 10 +- .../syntax_option_type_basic.html | 410 ++-- .../syntax_option_type_extended.html | 380 ++-- .../syntax_option_type_literal.html | 110 +- .../syntax_option_type_overview.html | 10 +- .../syntax_option_type_perl.html | 424 ++--- .../syntax_option_type_synopsis.html | 10 +- doc/html/boost_regex/syntax.html | 36 +- .../boost_regex/syntax/basic_extended.html | 755 ++++---- doc/html/boost_regex/syntax/basic_syntax.html | 330 ++-- .../boost_regex/syntax/character_classes.html | 10 +- .../optional_char_class_names.html | 490 +++-- .../character_classes/std_char_clases.html | 370 ++-- .../boost_regex/syntax/collating_names.html | 10 +- .../syntax/collating_names/digraphs.html | 10 +- .../syntax/collating_names/named_unicode.html | 10 +- .../collating_names/posix_symbolic_names.html | 934 ++++----- .../syntax/leftmost_longest_rule.html | 68 +- doc/html/boost_regex/syntax/perl_syntax.html | 913 ++++----- doc/html/boost_regex/unicode.html | 42 +- doc/html/index.html | 14 +- 82 files changed, 7675 insertions(+), 7924 deletions(-) diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index 897462fa..bf6507b9 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -2,8 +2,8 @@ Background Information - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -55,7 +55,7 @@

    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/acknowledgements.html b/doc/html/boost_regex/background_information/acknowledgements.html index b326730e..6e56a087 100644 --- a/doc/html/boost_regex/background_information/acknowledgements.html +++ b/doc/html/boost_regex/background_information/acknowledgements.html @@ -2,8 +2,8 @@ Acknowledgements - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +

    Acknowledgements @@ -82,7 +82,7 @@


    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 36dd5a30..d5b10367 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -2,8 +2,8 @@ Test and Example Programs - - + + @@ -20,15 +20,15 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -

    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/faq.html b/doc/html/boost_regex/background_information/faq.html index 686e6170..53a25a46 100644 --- a/doc/html/boost_regex/background_information/faq.html +++ b/doc/html/boost_regex/background_information/faq.html @@ -2,8 +2,8 @@ FAQ - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -149,7 +149,7 @@

    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/futher.html b/doc/html/boost_regex/background_information/futher.html index cec7a99d..467ffec4 100644 --- a/doc/html/boost_regex/background_information/futher.html +++ b/doc/html/boost_regex/background_information/futher.html @@ -2,8 +2,8 @@ References and Further Information - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -

    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/headers.html b/doc/html/boost_regex/background_information/headers.html index 70e0fa8e..b6a4f8aa 100644 --- a/doc/html/boost_regex/background_information/headers.html +++ b/doc/html/boost_regex/background_information/headers.html @@ -2,8 +2,8 @@ Headers - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -48,7 +48,7 @@

    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 15470b00..adb9d7a2 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -2,8 +2,8 @@ History - - + + @@ -19,14 +19,14 @@

    -PrevUpHome +PrevUpHome
    -
    +

    - New issues should be submitted at svn.boost.org + New issues should be submitted at svn.boost.org - don't forget to include your email address in the ticket!

    @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

    - + Boost 1.44
    @@ -54,261 +54,262 @@ #3890

    - + Boost 1.42
    -
      -
    • - Added support for Functors rather than strings as format expressions. -
    • -
    • - Improved error reporting when throwing exceptions to include better more - relevant information. -
    • -
    • - Improved performance and reduced stack usage of recursive expressions. -
    • -
    • - Fixed tickets #2802, - #3425, - #3507, - #3546, - #3631, - #3632, - #3715, - #3718, - #3763, - #3764 -
    • +
        +
      • + Added support for Functors rather than strings as format expressions. +
      • +
      • + Improved error reporting when throwing exceptions to include better more + relevant information. +
      • +
      • + Improved performance and reduced stack usage of recursive expressions. +
      • +
      • + Fixed tickets #2802, + #3425, + #3507, + #3546, + #3631, + #3632, + #3715, + #3718, + #3763, + #3764 +
      - + Boost 1.40
      -
      • - Added support for many Perl 5.10 syntax elements including named sub-expressions, - branch resets and recursive regular expressions. -
      +
      • + Added support for many Perl 5.10 syntax elements including named sub-expressions, + branch resets and recursive regular expressions. +
      - + Boost 1.38
      -
        -
      • -Breaking change: empty expressions, and - empty alternatives are now allowed when using the Perl regular expression - syntax. This change has been added for Perl compatibility, when the new - syntax_option_typeno_empty_expressions is set then the old behaviour - is preserved and empty expressions are prohibited. This is issue #1081. -
      • -
      • - Added support for Perl style ${n} expressions in format strings (issue - #2556). -
      • -
      • - Added support for accessing the location of sub-expressions within the - regular expression string (issue #2269). -
      • -
      • - Fixed compiler compatibility issues #2244, - #2514, - and #2458. -
      • +
          +
        • + Breaking change: empty expressions, + and empty alternatives are now allowed when using the Perl regular expression + syntax. This change has been added for Perl compatibility, when the new + syntax_option_type + no_empty_expressions is set then the old behaviour + is preserved and empty expressions are prohibited. This is issue #1081. +
        • +
        • + Added support for Perl style ${n} expressions in format strings (issue + #2556). +
        • +
        • + Added support for accessing the location of sub-expressions within the + regular expression string (issue #2269). +
        • +
        • + Fixed compiler compatibility issues #2244, + #2514, + and #2458. +
        - + Boost 1.34
        -
          -
        • - Fix for non-greedy repeats and partial matches not working correctly in - some cases. -
        • -
        • - Fix for non-greedy repeats on VC++ not working in some cases (bug report - 1515830). -
        • -
        • - Changed match_results::position() to return a valid result when *this represents - a partial match. -
        • -
        • - Fixed the grep and egrep options so that the newline character gets treated - the same as |. -
        • +
            +
          • + Fix for non-greedy repeats and partial matches not working correctly + in some cases. +
          • +
          • + Fix for non-greedy repeats on VC++ not working in some cases (bug report + 1515830). +
          • +
          • + Changed match_results::position() to return a valid result when *this + represents a partial match. +
          • +
          • + Fixed the grep and egrep options so that the newline character gets treated + the same as |. +
          - + Boost 1.33.1
          -
            -
          • - Fixed broken makefiles. -
          • -
          • - Fixed configuration setup to allow building with VC7.1 - STLport-4.6.2 - when using /Zc:wchar_t. -
          • -
          • - Moved declarations class-inline in static_mutex.hpp so that SGI Irix compiler - can cope. -
          • -
          • - Added needed standard library #includes to fileiter.hpp, regex_workaround.hpp - and cpp_regex_traits.hpp. -
          • -
          • - Fixed a bug where non-greedy repeats could in certain strange curcumstances - repeat more times than their maximum value. -
          • -
          • - Fixed the value returned by basic_regex<>::empty() from a default - constructed object. -
          • -
          • - Changed the deffinition of regex_error to make it backwards compatible - with Boost-1.32.0. -
          • -
          • - Disabled external templates for Intel C++ 8.0 and earlier - otherwise unresolved - references can occur. -
          • -
          • - Rewritten extern template code for gcc so that only specific member functions - are exported: otherwise strange unresolved references can occur when linking - and mixing debug and non-debug code. -
          • -
          • - Initialise all the data members of the unicode_iterators: this keeps gcc - from issuing needless warnings. -
          • -
          • - Ported the ICU integration code to VC6 and VC7. -
          • -
          • - Ensured code is STLport debug mode clean. -
          • -
          • - Fixed lookbehind assertions so that fixed length repeats are permitted, - and so that regex iteration allows lookbehind to look back before the current - search range (into the last match). -
          • -
          • - Fixed strange bug with non-greedy repeats inside forward lookahead assertions. -
          • -
          • - Enabled negated character classes inside character sets. -
          • -
          • - Fixed regression so that [a-z-] is a valid expression again. -
          • -
          • - Fixed bug that allowed some invalid expressions to be accepted. -
          • +
              +
            • + Fixed broken makefiles. +
            • +
            • + Fixed configuration setup to allow building with VC7.1 - STLport-4.6.2 + when using /Zc:wchar_t. +
            • +
            • + Moved declarations class-inline in static_mutex.hpp so that SGI Irix + compiler can cope. +
            • +
            • + Added needed standard library #includes to fileiter.hpp, regex_workaround.hpp + and cpp_regex_traits.hpp. +
            • +
            • + Fixed a bug where non-greedy repeats could in certain strange curcumstances + repeat more times than their maximum value. +
            • +
            • + Fixed the value returned by basic_regex<>::empty() from a default + constructed object. +
            • +
            • + Changed the deffinition of regex_error to make it backwards compatible + with Boost-1.32.0. +
            • +
            • + Disabled external templates for Intel C++ 8.0 and earlier - otherwise + unresolved references can occur. +
            • +
            • + Rewritten extern template code for gcc so that only specific member functions + are exported: otherwise strange unresolved references can occur when + linking and mixing debug and non-debug code. +
            • +
            • + Initialise all the data members of the unicode_iterators: this keeps + gcc from issuing needless warnings. +
            • +
            • + Ported the ICU integration code to VC6 and VC7. +
            • +
            • + Ensured code is STLport debug mode clean. +
            • +
            • + Fixed lookbehind assertions so that fixed length repeats are permitted, + and so that regex iteration allows lookbehind to look back before the + current search range (into the last match). +
            • +
            • + Fixed strange bug with non-greedy repeats inside forward lookahead assertions. +
            • +
            • + Enabled negated character classes inside character sets. +
            • +
            • + Fixed regression so that [a-z-] is a valid expression again. +
            • +
            • + Fixed bug that allowed some invalid expressions to be accepted. +
            - + Boost 1.33.0
            -
              -
            • - Completely rewritten expression parsing code, and traits class support; - now conforms to the standardization proposal. -
            • -
            • - Breaking Change: The syntax options that can be passed to basic_regex constructors - have been rationalized. The default option (perl) now has a value of zero, - and it is now clearly documented which options apply to which regular expression - syntax styles (perl, POSIX-extended, POSIX-basic etc). Some of the more - esoteric options have now been removed, so there is the possibility that - existing code may fail to compile: however equivalent functionality should - still be available. -
            • -
            • - Breaking Change: POSIX-extended and POSIX-basic regular expressions now - enforce the letter of the POSIX standard much more closely than before. -
            • -
            • - Added support for (?imsx-imsx) constructs. -
            • -
            • - Added support for lookbehind expressions (?<=positive-lookbehind) and - (?<!negative-lookbehind). -
            • -
            • - Added support for conditional expressions (?(assertion)true-expresion|false-expression). -
            • -
            • - Added MFC/ATL string wrappers. -
            • -
            • - Added Unicode support; based on ICU. -
            • -
            • - Changed newline support to recognise \f as a line separator (all character - types), and \x85 as a line separator for wide characters / Unicode only. -
            • -
            • - Added a new format flag format_literal that treats the replace string as - a literal, rather than a Perl or Sed style format string. -
            • -
            • - Errors are now reported by throwing exceptions of type regex_error. The - types used previously - bad_expression and bad_pattern - are now just typedefs - for regex_error. Type regex_error has a couple of new members: code() to - report an error code rather than a string, and position() to report where - in the expression the error occured. -
            • +
                +
              • + Completely rewritten expression parsing code, and traits class support; + now conforms to the standardization proposal. +
              • +
              • + Breaking Change: The syntax options that can be passed to basic_regex + constructors have been rationalized. The default option (perl) now has + a value of zero, and it is now clearly documented which options apply + to which regular expression syntax styles (perl, POSIX-extended, POSIX-basic + etc). Some of the more esoteric options have now been removed, so there + is the possibility that existing code may fail to compile: however equivalent + functionality should still be available. +
              • +
              • + Breaking Change: POSIX-extended and POSIX-basic regular expressions now + enforce the letter of the POSIX standard much more closely than before. +
              • +
              • + Added support for (?imsx-imsx) constructs. +
              • +
              • + Added support for lookbehind expressions (?<=positive-lookbehind) + and (?<!negative-lookbehind). +
              • +
              • + Added support for conditional expressions (?(assertion)true-expresion|false-expression). +
              • +
              • + Added MFC/ATL string wrappers. +
              • +
              • + Added Unicode support; based on ICU. +
              • +
              • + Changed newline support to recognise \f as a line separator (all character + types), and \x85 as a line separator for wide characters / Unicode only. +
              • +
              • + Added a new format flag format_literal that treats the replace string + as a literal, rather than a Perl or Sed style format string. +
              • +
              • + Errors are now reported by throwing exceptions of type regex_error. The + types used previously - bad_expression and bad_pattern - are now just + typedefs for regex_error. Type regex_error has a couple of new members: + code() to report an error code rather than a string, and position() to + report where in the expression the error occured. +
              - + Boost 1.32.1
              -
              • - Fixed bug in partial matches of bounded repeats of '.'. -
              +
              • + Fixed bug in partial matches of bounded repeats of '.'. +
              - + Boost 1.31.0
              -
                -
              • - Completely rewritten pattern matching code - it is now up to 10 times faster - than before. -
              • -
              • - Reorganized documentation. -
              • -
              • - Deprecated all interfaces that are not part of the regular expression standardization - proposal. -
              • -
              • - Added regex_iterator and regex_token_iterator . -
              • -
              • - Added support for Perl style independent sub-expressions. -
              • -
              • - Added non-member operators to the sub_match class, so that you can compare - sub_match's with strings, or add them to a string to produce a new string. -
              • -
              • - Added experimental support for extended capture information. -
              • -
              • - Changed the match flags so that they are a distinct type (not an integer), - if you try to pass the match flags as an integer rather than match_flag_type - to the regex algorithms then you will now get a compiler error. -
              • +
                  +
                • + Completely rewritten pattern matching code - it is now up to 10 times + faster than before. +
                • +
                • + Reorganized documentation. +
                • +
                • + Deprecated all interfaces that are not part of the regular expression + standardization proposal. +
                • +
                • + Added regex_iterator and regex_token_iterator . +
                • +
                • + Added support for Perl style independent sub-expressions. +
                • +
                • + Added non-member operators to the sub_match class, so that you can compare + sub_match's with strings, or add them to a string to produce a new string. +
                • +
                • + Added experimental support for extended capture information. +
                • +
                • + Changed the match flags so that they are a distinct type (not an integer), + if you try to pass the match flags as an integer rather than match_flag_type + to the regex algorithms then you will now get a compiler error. +
              @@ -321,7 +322,7 @@

              -PrevUpHome +PrevUpHome
              diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 31ce35f6..167f750e 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -2,8 +2,8 @@ Localization - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    @@ -170,958 +170,958 @@
    -

    - Message -

    +

    + Message +

    -

    - id -

    +

    + id +

    -

    - Meaning -

    +

    + Meaning +

    -

    - Default value -

    +

    + Default value +

    -

    - 101 -

    +

    + 101 +

    -

    - The character used to start a sub-expression. -

    +

    + The character used to start a sub-expression. +

    -

    - "(" -

    +

    + "(" +

    -

    - 102 -

    +

    + 102 +

    -

    - The character used to end a sub-expression declaration. -

    +

    + The character used to end a sub-expression declaration. +

    -

    - ")" -

    +

    + ")" +

    -

    - 103 -

    +

    + 103 +

    -

    - The character used to denote an end of line assertion. -

    +

    + The character used to denote an end of line assertion. +

    -

    - "$" -

    +

    + "$" +

    -

    - 104 -

    +

    + 104 +

    -

    - The character used to denote the start of line assertion. -

    +

    + The character used to denote the start of line assertion. +

    -

    - "^" -

    +

    + "^" +

    -

    - 105 -

    +

    + 105 +

    -

    - The character used to denote the "match any character expression". -

    +

    + The character used to denote the "match any character expression". +

    -

    - "." -

    +

    + "." +

    -

    - 106 -

    +

    + 106 +

    -

    - The match zero or more times repetition operator. -

    +

    + The match zero or more times repetition operator. +

    -

    - "*" -

    +

    + "*" +

    -

    - 107 -

    +

    + 107 +

    -

    - The match one or more repetition operator. -

    +

    + The match one or more repetition operator. +

    -

    - "+" -

    +

    + "+" +

    -

    - 108 -

    +

    + 108 +

    -

    - The match zero or one repetition operator. -

    +

    + The match zero or one repetition operator. +

    -

    - "?" -

    +

    + "?" +

    -

    - 109 -

    +

    + 109 +

    -

    - The character set opening character. -

    +

    + The character set opening character. +

    -

    - "[" -

    +

    + "[" +

    -

    - 110 -

    +

    + 110 +

    -

    - The character set closing character. -

    +

    + The character set closing character. +

    -

    - "]" -

    +

    + "]" +

    -

    - 111 -

    +

    + 111 +

    -

    - The alternation operator. -

    +

    + The alternation operator. +

    -

    - "|" -

    +

    + "|" +

    -

    - 112 -

    +

    + 112 +

    -

    - The escape character. -

    +

    + The escape character. +

    -

    - "\" -

    +

    + "\" +

    -

    - 113 -

    +

    + 113 +

    -

    - The hash character (not currently used). -

    +

    + The hash character (not currently used). +

    -

    - "#" -

    +

    + "#" +

    -

    - 114 -

    +

    + 114 +

    -

    - The range operator. -

    +

    + The range operator. +

    -

    - "-" -

    +

    + "-" +

    -

    - 115 -

    +

    + 115 +

    -

    - The repetition operator opening character. -

    +

    + The repetition operator opening character. +

    -

    - "{" -

    +

    + "{" +

    -

    - 116 -

    +

    + 116 +

    -

    - The repetition operator closing character. -

    +

    + The repetition operator closing character. +

    -

    - "}" -

    +

    + "}" +

    -

    - 117 -

    +

    + 117 +

    -

    - The digit characters. -

    +

    + The digit characters. +

    -

    - "0123456789" -

    +

    + "0123456789" +

    -

    - 118 -

    +

    + 118 +

    -

    - The character which when preceded by an escape character represents - the word boundary assertion. -

    +

    + The character which when preceded by an escape character represents + the word boundary assertion. +

    -

    - "b" -

    +

    + "b" +

    -

    - 119 -

    +

    + 119 +

    -

    - The character which when preceded by an escape character represents - the non-word boundary assertion. -

    +

    + The character which when preceded by an escape character represents + the non-word boundary assertion. +

    -

    - "B" -

    +

    + "B" +

    -

    - 120 -

    +

    + 120 +

    -

    - The character which when preceded by an escape character represents - the word-start boundary assertion. -

    +

    + The character which when preceded by an escape character represents + the word-start boundary assertion. +

    -

    - "<" -

    +

    + "<" +

    -

    - 121 -

    +

    + 121 +

    -

    - The character which when preceded by an escape character represents - the word-end boundary assertion. -

    +

    + The character which when preceded by an escape character represents + the word-end boundary assertion. +

    -

    - ">" -

    +

    + ">" +

    -

    - 122 -

    +

    + 122 +

    -

    - The character which when preceded by an escape character represents - any word character. -

    +

    + The character which when preceded by an escape character represents + any word character. +

    -

    - "w" -

    +

    + "w" +

    -

    - 123 -

    +

    + 123 +

    -

    - The character which when preceded by an escape character represents - a non-word character. -

    +

    + The character which when preceded by an escape character represents + a non-word character. +

    -

    - "W" -

    +

    + "W" +

    -

    - 124 -

    +

    + 124 +

    -

    - The character which when preceded by an escape character represents - a start of buffer assertion. -

    +

    + The character which when preceded by an escape character represents + a start of buffer assertion. +

    -

    - "`A" -

    +

    + "`A" +

    -

    - 125 -

    +

    + 125 +

    -

    - The character which when preceded by an escape character represents - an end of buffer assertion. -

    +

    + The character which when preceded by an escape character represents + an end of buffer assertion. +

    -

    - "'z" -

    +

    + "'z" +

    -

    - 126 -

    +

    + 126 +

    -

    - The newline character. -

    +

    + The newline character. +

    -

    - "\n" -

    +

    + "\n" +

    -

    - 127 -

    +

    + 127 +

    -

    - The comma separator. -

    +

    + The comma separator. +

    -

    - "," -

    +

    + "," +

    -

    - 128 -

    +

    + 128 +

    -

    - The character which when preceded by an escape character represents - the bell character. -

    +

    + The character which when preceded by an escape character represents + the bell character. +

    -

    - "a" -

    +

    + "a" +

    -

    - 129 -

    +

    + 129 +

    -

    - The character which when preceded by an escape character represents - the form feed character. -

    +

    + The character which when preceded by an escape character represents + the form feed character. +

    -

    - "f" -

    +

    + "f" +

    -

    - 130 -

    +

    + 130 +

    -

    - The character which when preceded by an escape character represents - the newline character. -

    +

    + The character which when preceded by an escape character represents + the newline character. +

    -

    - "n" -

    +

    + "n" +

    -

    - 131 -

    +

    + 131 +

    -

    - The character which when preceded by an escape character represents - the carriage return character. -

    +

    + The character which when preceded by an escape character represents + the carriage return character. +

    -

    - "r" -

    +

    + "r" +

    -

    - 132 -

    +

    + 132 +

    -

    - The character which when preceded by an escape character represents - the tab character. -

    +

    + The character which when preceded by an escape character represents + the tab character. +

    -

    - "t" -

    +

    + "t" +

    -

    - 133 -

    +

    + 133 +

    -

    - The character which when preceded by an escape character represents - the vertical tab character. -

    +

    + The character which when preceded by an escape character represents + the vertical tab character. +

    -

    - "v" -

    +

    + "v" +

    -

    - 134 -

    +

    + 134 +

    -

    - The character which when preceded by an escape character represents - the start of a hexadecimal character constant. -

    +

    + The character which when preceded by an escape character represents + the start of a hexadecimal character constant. +

    -

    - "x" -

    +

    + "x" +

    -

    - 135 -

    +

    + 135 +

    -

    - The character which when preceded by an escape character represents - the start of an ASCII escape character. -

    +

    + The character which when preceded by an escape character represents + the start of an ASCII escape character. +

    -

    - "c" -

    +

    + "c" +

    -

    - 136 -

    +

    + 136 +

    -

    - The colon character. -

    +

    + The colon character. +

    -

    - ":" -

    +

    + ":" +

    -

    - 137 -

    +

    + 137 +

    -

    - The equals character. -

    +

    + The equals character. +

    -

    - "=" -

    +

    + "=" +

    -

    - 138 -

    +

    + 138 +

    -

    - The character which when preceded by an escape character represents - the ASCII escape character. -

    +

    + The character which when preceded by an escape character represents + the ASCII escape character. +

    -

    - "e" -

    +

    + "e" +

    -

    - 139 -

    +

    + 139 +

    -

    - The character which when preceded by an escape character represents - any lower case character. -

    +

    + The character which when preceded by an escape character represents + any lower case character. +

    -

    - "l" -

    +

    + "l" +

    -

    - 140 -

    +

    + 140 +

    -

    - The character which when preceded by an escape character represents - any non-lower case character. -

    +

    + The character which when preceded by an escape character represents + any non-lower case character. +

    -

    - "L" -

    +

    + "L" +

    -

    - 141 -

    +

    + 141 +

    -

    - The character which when preceded by an escape character represents - any upper case character. -

    +

    + The character which when preceded by an escape character represents + any upper case character. +

    -

    - "u" -

    +

    + "u" +

    -

    - 142 -

    +

    + 142 +

    -

    - The character which when preceded by an escape character represents - any non-upper case character. -

    +

    + The character which when preceded by an escape character represents + any non-upper case character. +

    -

    - "U" -

    +

    + "U" +

    -

    - 143 -

    +

    + 143 +

    -

    - The character which when preceded by an escape character represents - any space character. -

    +

    + The character which when preceded by an escape character represents + any space character. +

    -

    - "s" -

    +

    + "s" +

    -

    - 144 -

    +

    + 144 +

    -

    - The character which when preceded by an escape character represents - any non-space character. -

    +

    + The character which when preceded by an escape character represents + any non-space character. +

    -

    - "S" -

    +

    + "S" +

    -

    - 145 -

    +

    + 145 +

    -

    - The character which when preceded by an escape character represents - any digit character. -

    +

    + The character which when preceded by an escape character represents + any digit character. +

    -

    - "d" -

    +

    + "d" +

    -

    - 146 -

    +

    + 146 +

    -

    - The character which when preceded by an escape character represents - any non-digit character. -

    +

    + The character which when preceded by an escape character represents + any non-digit character. +

    -

    - "D" -

    +

    + "D" +

    -

    - 147 -

    +

    + 147 +

    -

    - The character which when preceded by an escape character represents - the end quote operator. -

    +

    + The character which when preceded by an escape character represents + the end quote operator. +

    -

    - "E" -

    +

    + "E" +

    -

    - 148 -

    +

    + 148 +

    -

    - The character which when preceded by an escape character represents - the start quote operator. -

    +

    + The character which when preceded by an escape character represents + the start quote operator. +

    -

    - "Q" -

    +

    + "Q" +

    -

    - 149 -

    +

    + 149 +

    -

    - The character which when preceded by an escape character represents - a Unicode combining character sequence. -

    +

    + The character which when preceded by an escape character represents + a Unicode combining character sequence. +

    -

    - "X" -

    +

    + "X" +

    -

    - 150 -

    +

    + 150 +

    -

    - The character which when preceded by an escape character represents - any single character. -

    +

    + The character which when preceded by an escape character represents + any single character. +

    -

    - "C" -

    +

    + "C" +

    -

    - 151 -

    +

    + 151 +

    -

    - The character which when preceded by an escape character represents - end of buffer operator. -

    +

    + The character which when preceded by an escape character represents + end of buffer operator. +

    -

    - "Z" -

    +

    + "Z" +

    -

    - 152 -

    +

    + 152 +

    -

    - The character which when preceded by an escape character represents - the continuation assertion. -

    +

    + The character which when preceded by an escape character represents + the continuation assertion. +

    -

    - "G" -

    +

    + "G" +

    -

    - 153 -

    +

    + 153 +

    -

    - The character which when preceeded by (? indicates a zero width negated - forward lookahead assert. -

    +

    + The character which when preceeded by (? indicates a zero width + negated forward lookahead assert. +

    -

    - ! -

    +

    + ! +

    -

    - Message ID -

    +

    + Message ID +

    -

    - Error message ID -

    +

    + Error message ID +

    -

    - Default string -

    +

    + Default string +

    -

    - 201 -

    +

    + 201 +

    -

    - REG_NOMATCH -

    +

    + REG_NOMATCH +

    -

    - "No match" -

    +

    + "No match" +

    -

    - 202 -

    +

    + 202 +

    -

    - REG_BADPAT -

    +

    + REG_BADPAT +

    -

    - "Invalid regular expression" -

    +

    + "Invalid regular expression" +

    -

    - 203 -

    +

    + 203 +

    -

    - REG_ECOLLATE -

    +

    + REG_ECOLLATE +

    -

    - "Invalid collation character" -

    +

    + "Invalid collation character" +

    -

    - 204 -

    +

    + 204 +

    -

    - REG_ECTYPE -

    +

    + REG_ECTYPE +

    -

    - "Invalid character class name" -

    +

    + "Invalid character class name" +

    -

    - 205 -

    +

    + 205 +

    -

    - REG_EESCAPE -

    +

    + REG_EESCAPE +

    -

    - "Trailing backslash" -

    +

    + "Trailing backslash" +

    -

    - 206 -

    +

    + 206 +

    -

    - REG_ESUBREG -

    +

    + REG_ESUBREG +

    -

    - "Invalid back reference" -

    +

    + "Invalid back reference" +

    -

    - 207 -

    +

    + 207 +

    -

    - REG_EBRACK -

    +

    + REG_EBRACK +

    -

    - "Unmatched [ or " -

    +

    + "Unmatched [ or " +

    -

    - [208 -

    +

    + [208 +

    -

    - REG_EPAREN -

    +

    + REG_EPAREN +

    -

    - "Unmatched ( or \(" -

    +

    + "Unmatched ( or \(" +

    -

    - 209 -

    +

    + 209 +

    -

    - REG_EBRACE -

    +

    + REG_EBRACE +

    -

    - "Unmatched \{" -

    +

    + "Unmatched \{" +

       
    -

    - 210 -

    +

    + 210 +

    -

    - REG_BADBR -

    +

    + REG_BADBR +

    -

    - "Invalid content of \{\}" -

    +

    + "Invalid content of \{\}" +

       
    -

    - 211 -

    +

    + 211 +

    -

    - REG_ERANGE -

    +

    + REG_ERANGE +

    -

    - "Invalid range end" -

    +

    + "Invalid range end" +

       
    -

    - 212 -

    +

    + 212 +

    -

    - REG_ESPACE -

    +

    + REG_ESPACE +

    -

    - "Memory exhausted" -

    +

    + "Memory exhausted" +

       
    -

    - 213 -

    +

    + 213 +

    -

    - REG_BADRPT -

    +

    + REG_BADRPT +

    -

    - "Invalid preceding regular expression" -

    +

    + "Invalid preceding regular expression" +

       
    -

    - 214 -

    +

    + 214 +

    -

    - REG_EEND -

    +

    + REG_EEND +

    -

    - "Premature end of regular expression" -

    +

    + "Premature end of regular expression" +

       
    -

    - 215 -

    +

    + 215 +

    -

    - REG_ESIZE -

    +

    + REG_ESIZE +

    -

    - "Regular expression too big" -

    +

    + "Regular expression too big" +

       
    -

    - 216 -

    +

    + 216 +

    -

    - REG_ERPAREN -

    +

    + REG_ERPAREN +

    -

    - "Unmatched ) or \)" -

    +

    + "Unmatched ) or \)" +

       
    -

    - 217 -

    +

    + 217 +

    -

    - REG_EMPTY -

    +

    + REG_EMPTY +

    -

    - "Empty expression" -

    +

    + "Empty expression" +

       
    -

    - 218 -

    +

    + 218 +

    -

    - REG_E_UNKNOWN -

    +

    + REG_E_UNKNOWN +

    -

    - "Unknown error" -

    +

    + "Unknown error" +

       
    -

    - Message ID -

    +

    + Message ID +

    -

    - Description -

    +

    + Description +

    -

    - Equivalent default class name -

    +

    + Equivalent default class name +

    -

    - 300 -

    +

    + 300 +

    -

    - The character class name for alphanumeric characters. -

    +

    + The character class name for alphanumeric characters. +

    -

    - "alnum" -

    +

    + "alnum" +

    -

    - 301 -

    +

    + 301 +

    -

    - The character class name for alphabetic characters. -

    +

    + The character class name for alphabetic characters. +

    -

    - "alpha" -

    +

    + "alpha" +

    -

    - 302 -

    +

    + 302 +

    -

    - The character class name for control characters. -

    +

    + The character class name for control characters. +

    -

    - "cntrl" -

    +

    + "cntrl" +

    -

    - 303 -

    +

    + 303 +

    -

    - The character class name for digit characters. -

    +

    + The character class name for digit characters. +

    -

    - "digit" -

    +

    + "digit" +

    -

    - 304 -

    +

    + 304 +

    -

    - The character class name for graphics characters. -

    +

    + The character class name for graphics characters. +

    -

    - "graph" -

    +

    + "graph" +

    -

    - 305 -

    +

    + 305 +

    -

    - The character class name for lower case characters. -

    +

    + The character class name for lower case characters. +

    -

    - "lower" -

    +

    + "lower" +

    -

    - 306 -

    +

    + 306 +

    -

    - The character class name for printable characters. -

    +

    + The character class name for printable characters. +

    -

    - "print" -

    +

    + "print" +

    -

    - 307 -

    +

    + 307 +

    -

    - The character class name for punctuation characters. -

    +

    + The character class name for punctuation characters. +

    -

    - "punct" -

    +

    + "punct" +

    -

    - 308 -

    +

    + 308 +

    -

    - The character class name for space characters. -

    +

    + The character class name for space characters. +

    -

    - "space" -

    +

    + "space" +

    -

    - 309 -

    +

    + 309 +

    -

    - The character class name for upper case characters. -

    +

    + The character class name for upper case characters. +

    -

    - "upper" -

    +

    + "upper" +

    -

    - 310 -

    +

    + 310 +

    -

    - The character class name for hexadecimal characters. -

    +

    + The character class name for hexadecimal characters. +

    -

    - "xdigit" -

    +

    + "xdigit" +

    -

    - 311 -

    +

    + 311 +

    -

    - The character class name for blank characters. -

    +

    + The character class name for blank characters. +

    -

    - "blank" -

    +

    + "blank" +

    -

    - 312 -

    +

    + 312 +

    -

    - The character class name for word characters. -

    +

    + The character class name for word characters. +

    -

    - "word" -

    +

    + "word" +

    -

    - 313 -

    +

    + 313 +

    -

    - The character class name for Unicode characters. -

    +

    + The character class name for Unicode characters. +

    -

    - "unicode" -

    +

    + "unicode" +


    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/performance.html b/doc/html/boost_regex/background_information/performance.html index a3870772..164d6c59 100644 --- a/doc/html/boost_regex/background_information/performance.html +++ b/doc/html/boost_regex/background_information/performance.html @@ -2,8 +2,8 @@ Performance - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -33,15 +33,15 @@ synchronisation), but not by much. The following pages compare Boost.Regex with various other regular expression libraries for the following compilers:

    - @@ -54,7 +54,7 @@

    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/redist.html b/doc/html/boost_regex/background_information/redist.html index 8a7cbc3a..b95f24b5 100644 --- a/doc/html/boost_regex/background_information/redist.html +++ b/doc/html/boost_regex/background_information/redist.html @@ -2,8 +2,8 @@ Redistributables - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -55,7 +55,7 @@

    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 3a443a23..c3c0d573 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -2,8 +2,8 @@ Standards Conformance - - + + @@ -20,15 +20,15 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -73,7 +73,7 @@ the Unicode requirements below.

    - + POSIX

    @@ -93,7 +93,7 @@ a custom traits class.

    - + Unicode

    @@ -108,451 +108,451 @@

    -

    - Item -

    +

    + Item +

    -

    - Feature -

    +

    + Feature +

    -

    - Support -

    +

    + Support +

    -

    - 1.1 -

    +

    + 1.1 +

    -

    - Hex Notation -

    +

    + Hex Notation +

    -

    - Yes: use \x{DDDD} to refer to code point UDDDD. -

    +

    + Yes: use \x{DDDD} to refer to code point UDDDD. +

    -

    - 1.2 -

    +

    + 1.2 +

    -

    - Character Properties -

    +

    + Character Properties +

    -

    - All the names listed under the General Category Property are supported. - Script names and Other Names are not currently supported. -

    +

    + All the names listed under the General Category Property are supported. + Script names and Other Names are not currently supported. +

    -

    - 1.3 -

    +

    + 1.3 +

    -

    - Subtraction and Intersection -

    +

    + Subtraction and Intersection +

    -

    - Indirectly support by forward-lookahead: -

    -

    - (?=[[:X:]])[[:Y:]] -

    -

    - Gives the intersection of character properties X and Y. -

    -

    - (?![[:X:]])[[:Y:]] -

    -

    - Gives everything in Y that is not in X (subtraction). -

    +

    + Indirectly support by forward-lookahead: +

    +

    + (?=[[:X:]])[[:Y:]] +

    +

    + Gives the intersection of character properties X and Y. +

    +

    + (?![[:X:]])[[:Y:]] +

    +

    + Gives everything in Y that is not in X (subtraction). +

    -

    - 1.4 -

    +

    + 1.4 +

    -

    - Simple Word Boundaries -

    +

    + Simple Word Boundaries +

    -

    - Conforming: non-spacing marks are included in the set of word characters. -

    +

    + Conforming: non-spacing marks are included in the set of word characters. +

    -

    - 1.5 -

    +

    + 1.5 +

    -

    - Caseless Matching -

    +

    + Caseless Matching +

    -

    - Supported, note that at this level, case transformations are 1:1, - many to many case folding operations are not supported (for example - "ß" to "SS"). -

    +

    + Supported, note that at this level, case transformations are 1:1, + many to many case folding operations are not supported (for example + "ß" to "SS"). +

    -

    - 1.6 -

    +

    + 1.6 +

    -

    - Line Boundaries -

    +

    + Line Boundaries +

    -

    - Supported, except that "." matches only one character of - "\r\n". Other than that word boundaries match correctly; - including not matching in the middle of a "\r\n" sequence. -

    +

    + Supported, except that "." matches only one character + of "\r\n". Other than that word boundaries match correctly; + including not matching in the middle of a "\r\n" sequence. +

    -

    - 1.7 -

    +

    + 1.7 +

    -

    - Code Points -

    +

    + Code Points +

    -

    - Supported: provided you use the u32* algorithms, then UTF-8, UTF-16 - and UTF-32 are all treated as sequences of 32-bit code points. -

    +

    + Supported: provided you use the u32* algorithms, then UTF-8, UTF-16 + and UTF-32 are all treated as sequences of 32-bit code points. +

    -

    - 2.1 -

    +

    + 2.1 +

    -

    - Canonical Equivalence -

    +

    + Canonical Equivalence +

    -

    - Not supported: it is up to the user of the library to convert all - text into the same canonical form as the regular expression. -

    +

    + Not supported: it is up to the user of the library to convert all + text into the same canonical form as the regular expression. +

    -

    - 2.2 -

    +

    + 2.2 +

    -

    - Default Grapheme Clusters -

    +

    + Default Grapheme Clusters +

    -

    - Not supported. -

    +

    + Not supported. +

    -

    - 2.3Default Word Boundaries -

    +

    + 2.3Default Word Boundaries +

    -

    - Not supported. -

    +

    + Not supported. +

     
    -

    - 2.4 -

    +

    + 2.4 +

    -

    - Default Loose Matches -

    +

    + Default Loose Matches +

    -

    - Not Supported. -

    +

    + Not Supported. +

    -

    - 2.5 -

    +

    + 2.5 +

    -

    - Named Properties -

    +

    + Named Properties +

    -

    - Supported: the expression "[[:name:]]" or \N{name} matches - the named character "name". -

    +

    + Supported: the expression "[[:name:]]" or \N{name} matches + the named character "name". +

    -

    - 2.6 -

    +

    + 2.6 +

    -

    - Wildcard properties -

    +

    + Wildcard properties +

    -

    - Not Supported. -

    +

    + Not Supported. +

    -

    - 3.1 -

    +

    + 3.1 +

    -

    - Tailored Punctuation. -

    +

    + Tailored Punctuation. +

    -

    - Not Supported. -

    +

    + Not Supported. +

    -

    - 3.2 -

    +

    + 3.2 +

    -

    - Tailored Grapheme Clusters -

    +

    + Tailored Grapheme Clusters +

    -

    - Not Supported. -

    +

    + Not Supported. +

    -

    - 3.3 -

    +

    + 3.3 +

    -

    - Tailored Word Boundaries. -

    +

    + Tailored Word Boundaries. +

    -

    - Not Supported. -

    +

    + Not Supported. +

    -

    - 3.4 -

    +

    + 3.4 +

    -

    - Tailored Loose Matches -

    +

    + Tailored Loose Matches +

    -

    - Partial support: [[=c=]] matches characters with the same primary - equivalence class as "c". -

    +

    + Partial support: [[=c=]] matches characters with the same primary + equivalence class as "c". +

    -

    - 3.5 -

    +

    + 3.5 +

    -

    - Tailored Ranges -

    +

    + Tailored Ranges +

    -

    - Supported: [a-b] matches any character that collates in the range - a to b, when the expression is constructed with the collate flag - set. -

    +

    + Supported: [a-b] matches any character that collates in the range + a to b, when the expression is constructed with the collate flag + set. +

    -

    - 3.6 -

    +

    + 3.6 +

    -

    - Context Matches -

    +

    + Context Matches +

    -

    - Not Supported. -

    +

    + Not Supported. +

    -

    - 3.7 -

    +

    + 3.7 +

    -

    - Incremental Matches -

    +

    + Incremental Matches +

    -

    - Supported: pass the flag match_partial - to the regex algorithms. -

    +

    + Supported: pass the flag match_partial + to the regex algorithms. +

    -

    - 3.8 -

    +

    + 3.8 +

    -

    - Unicode Set Sharing -

    +

    + Unicode Set Sharing +

    -

    - Not Supported. -

    +

    + Not Supported. +

    -

    - 3.9 -

    +

    + 3.9 +

    -

    - Possible Match Sets -

    +

    + Possible Match Sets +

    -

    - Not supported, however this information is used internally to optimise - the matching of regular expressions, and return quickly if no match - is possible. -

    +

    + Not supported, however this information is used internally to optimise + the matching of regular expressions, and return quickly if no match + is possible. +

    -

    - 3.10 -

    +

    + 3.10 +

    -

    - Folded Matching -

    +

    + Folded Matching +

    -

    - Partial Support: It is possible to achieve a similar effect by using - a custom regular expression traits class. -

    +

    + Partial Support: It is possible to achieve a similar effect by + using a custom regular expression traits class. +

    -

    - 3.11 -

    +

    + 3.11 +

    -

    - Custom Submatch Evaluation -

    +

    + Custom Submatch Evaluation +

    -

    - Not Supported. -

    +

    + Not Supported. +


    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/background_information/thread_safety.html b/doc/html/boost_regex/background_information/thread_safety.html index 6b59e6d4..f9ead9dc 100644 --- a/doc/html/boost_regex/background_information/thread_safety.html +++ b/doc/html/boost_regex/background_information/thread_safety.html @@ -2,8 +2,8 @@ Thread Safety - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +

    Thread Safety @@ -79,7 +79,7 @@


    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index eb9398ff..31eae096 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -2,8 +2,8 @@ Understanding Marked Sub-Expressions and Captures - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +

    Understanding Marked Sub-Expressions and Captures @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -57,75 +57,75 @@

    -

    - Sub-expression -

    +

    + Sub-expression +

    -

    - Text found -

    +

    + Text found +

    -

    - $` -

    +

    + $` +

    -

    - "@" -

    +

    + "@" +

    -

    - $& -

    +

    + $& +

    -

    - "abc def" -

    +

    + "abc def" +

    -

    - $1 -

    +

    + $1 +

    -

    - "abc" -

    +

    + "abc" +

    -

    - $2 -

    +

    + $2 +

    -

    - "def" -

    +

    + "def" +

    -

    - $' -

    +

    + $' +

    -

    - "--" -

    +

    + "--" +

    -

    - Perl -

    +

    + Perl +

    -

    - Boost.Regex -

    +

    + Boost.Regex +

    -

    - $` -

    +

    + $` +

    -

    - m.prefix() -

    +

    + m.prefix() +

    -

    - $& -

    +

    + $& +

    -

    - m[0] -

    +

    + m[0] +

    -

    - $n -

    +

    + $n +

    -

    - m[n] -

    +

    + m[n] +

    -

    - $' -

    +

    + $' +

    -

    - m.suffix() -

    +

    + m.suffix() +

    @@ -377,7 +377,7 @@ Text: "now is the time for all good men to come to the aid of the party"

    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/configuration.html b/doc/html/boost_regex/configuration.html index 16f93941..3756fe67 100644 --- a/doc/html/boost_regex/configuration.html +++ b/doc/html/boost_regex/configuration.html @@ -2,8 +2,8 @@ Configuration - - + + @@ -20,9 +20,9 @@

    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -45,7 +45,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/configuration/algorithm.html b/doc/html/boost_regex/configuration/algorithm.html index 76933bcb..ee995eee 100644 --- a/doc/html/boost_regex/configuration/algorithm.html +++ b/doc/html/boost_regex/configuration/algorithm.html @@ -2,8 +2,8 @@ Algorithm Selection - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -33,45 +33,45 @@ -

    - macro -

    +

    + macro +

    -

    - description -

    +

    + description +

    -

    - BOOST_REGEX_RECURSIVE -

    +

    + BOOST_REGEX_RECURSIVE +

    -

    - Tells Boost.Regex to use a stack-recursive matching algorithm. This - is generally the fastest option (although there is very little in - it), but can cause stack overflow in extreme cases, on Win32 this - can be handled safely, but this is not the case on other platforms. -

    +

    + Tells Boost.Regex to use a stack-recursive matching algorithm. + This is generally the fastest option (although there is very little + in it), but can cause stack overflow in extreme cases, on Win32 + this can be handled safely, but this is not the case on other platforms. +

    -

    - BOOST_REGEX_NON_RECURSIVE -

    +

    + BOOST_REGEX_NON_RECURSIVE +

    -

    - Tells Boost.Regex to use a non-stack recursive matching algorithm, - this can be slightly slower than the alternative, but is always safe - no matter how pathological the regular expression. This is the default - on non-Win32 platforms. -

    +

    + Tells Boost.Regex to use a non-stack recursive matching algorithm, + this can be slightly slower than the alternative, but is always + safe no matter how pathological the regular expression. This is + the default on non-Win32 platforms. +

    @@ -87,7 +87,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/configuration/compiler.html b/doc/html/boost_regex/configuration/compiler.html index a2a1b324..60708fe5 100644 --- a/doc/html/boost_regex/configuration/compiler.html +++ b/doc/html/boost_regex/configuration/compiler.html @@ -2,8 +2,8 @@ Compiler Setup - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -44,7 +44,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/configuration/linkage.html b/doc/html/boost_regex/configuration/linkage.html index c6e6f877..a1c7082e 100644 --- a/doc/html/boost_regex/configuration/linkage.html +++ b/doc/html/boost_regex/configuration/linkage.html @@ -2,8 +2,8 @@ Linkage Options - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -33,43 +33,43 @@ -

    - macro -

    +

    + macro +

    -

    - description -

    +

    + description +

    -

    - BOOST_REGEX_DYN_LINK -

    +

    + BOOST_REGEX_DYN_LINK +

    -

    - For Microsoft and Borland C++ builds, this tells Boost.Regex that - it should link to the dll build of the Boost.Regex. By default boost.regex - will link to its static library build, even if the dynamic C runtime - library is in use. -

    +

    + For Microsoft and Borland C++ builds, this tells Boost.Regex that + it should link to the dll build of the Boost.Regex. By default + boost.regex will link to its static library build, even if the + dynamic C runtime library is in use. +

    -

    - BOOST_REGEX_NO_LIB -

    +

    + BOOST_REGEX_NO_LIB +

    -

    - For Microsoft and Borland C++ builds, this tells Boost.Regex that - it should not automatically select the library to link to. -

    +

    + For Microsoft and Borland C++ builds, this tells Boost.Regex that + it should not automatically select the library to link to. +

    @@ -85,7 +85,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/configuration/locale.html b/doc/html/boost_regex/configuration/locale.html index 38cea49d..9ef6d3ca 100644 --- a/doc/html/boost_regex/configuration/locale.html +++ b/doc/html/boost_regex/configuration/locale.html @@ -2,8 +2,8 @@ Locale and traits class selection - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +

    Locale and traits class selection @@ -38,56 +38,56 @@ -

    - macro -

    +

    + macro +

    -

    - description -

    +

    + description +

    -

    - BOOST_REGEX_USE_C_LOCALE -

    +

    + BOOST_REGEX_USE_C_LOCALE +

    -

    - Forces Boost.Regex to use the global C locale in its traits class - support: this is now deprecated in favour of the C++ locale. -

    +

    + Forces Boost.Regex to use the global C locale in its traits class + support: this is now deprecated in favour of the C++ locale. +

    -

    - BOOST_REGEX_USE_CPP_LOCALE -

    +

    + BOOST_REGEX_USE_CPP_LOCALE +

    -

    - Forces Boost.Regex to use std::locale in it's default traits class, - regular expressions can then be imbued with an instance specific - locale. This is the default behaviour on non-Windows platforms. -

    +

    + Forces Boost.Regex to use std::locale in it's default traits class, + regular expressions can then be imbued with an instance specific + locale. This is the default behaviour on non-Windows platforms. +

    -

    - BOOST_REGEX_NO_W32 -

    +

    + BOOST_REGEX_NO_W32 +

    -

    - Tells Boost.Regex not to use any Win32 API's even when available - (implies BOOST_REGEX_USE_CPP_LOCALE unless BOOST_REGEX_USE_C_LOCALE - is set). -

    +

    + Tells Boost.Regex not to use any Win32 API's even when available + (implies BOOST_REGEX_USE_CPP_LOCALE unless BOOST_REGEX_USE_C_LOCALE + is set). +

    @@ -103,7 +103,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/configuration/tuning.html b/doc/html/boost_regex/configuration/tuning.html index 0ff845a1..4d71f620 100644 --- a/doc/html/boost_regex/configuration/tuning.html +++ b/doc/html/boost_regex/configuration/tuning.html @@ -2,8 +2,8 @@ Algorithm Tuning - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -36,27 +36,27 @@ -

    - macro -

    +

    + macro +

    -

    - description -

    +

    + description +

    -

    - BOOST_REGEX_HAS_MS_STACK_GUARD -

    +

    + BOOST_REGEX_HAS_MS_STACK_GUARD +

    -

    - Tells Boost.Regex that Microsoft style __try - __except blocks are - supported, and can be used to safely trap stack overflow. -

    +

    + Tells Boost.Regex that Microsoft style __try - __except blocks + are supported, and can be used to safely trap stack overflow. +

    @@ -70,69 +70,71 @@ -

    - macro -

    +

    + macro +

    -

    - description -

    +

    + description +

    -

    - BOOST_REGEX_BLOCKSIZE -

    +

    + BOOST_REGEX_BLOCKSIZE +

    -

    - In non-recursive mode, Boost.Regex uses largish blocks of memory - to act as a stack for the state machine, the larger the block size - then the fewer allocations that will take place. This defaults to - 4096 bytes, which is large enough to match the vast majority of regular - expressions without further allocations, however, you can choose - smaller or larger values depending upon your platforms characteristics. -

    +

    + In non-recursive mode, Boost.Regex uses largish blocks of memory + to act as a stack for the state machine, the larger the block size + then the fewer allocations that will take place. This defaults + to 4096 bytes, which is large enough to match the vast majority + of regular expressions without further allocations, however, you + can choose smaller or larger values depending upon your platforms + characteristics. +

    -

    - BOOST_REGEX_MAX_BLOCKS -

    +

    + BOOST_REGEX_MAX_BLOCKS +

    -

    - Tells Boost.Regex how many blocks of size BOOST_REGEX_BLOCKSIZE it - is permitted to use. If this value is exceeded then Boost.Regex will - stop trying to find a match and throw a std::runtime_error. Defaults - to 1024, don't forget to tweek this value if you alter BOOST_REGEX_BLOCKSIZE - by much. -

    +

    + Tells Boost.Regex how many blocks of size BOOST_REGEX_BLOCKSIZE + it is permitted to use. If this value is exceeded then Boost.Regex + will stop trying to find a match and throw a std::runtime_error. + Defaults to 1024, don't forget to tweek this value if you alter + BOOST_REGEX_BLOCKSIZE by much. +

    -

    - BOOST_REGEX_MAX_CACHE_BLOCKS -

    +

    + BOOST_REGEX_MAX_CACHE_BLOCKS +

    -

    - Tells Boost.Regex how many memory blocks to store in it's internal - cache - memory blocks are taken from this cache rather than by calling - ::operator new. Generally speeking this can be an order of magnitude - faster than calling ::opertator new each time a memory block is required, - but has the downside that Boost.Regex can end up caching a large - chunk of memory (by default up to 16 blocks each of BOOST_REGEX_BLOCKSIZE - size). If memory is tight then try defining this to 0 (disables all - caching), or if that is too slow, then a value of 1 or 2, may be - sufficient. On the other hand, on large multi-processor, multi-threaded - systems, you may find that a higher value is in order. -

    +

    + Tells Boost.Regex how many memory blocks to store in it's internal + cache - memory blocks are taken from this cache rather than by + calling ::operator new. Generally speeking this can be an order + of magnitude faster than calling ::opertator new each time a memory + block is required, but has the downside that Boost.Regex can end + up caching a large chunk of memory (by default up to 16 blocks + each of BOOST_REGEX_BLOCKSIZE size). If memory is tight then try + defining this to 0 (disables all caching), or if that is too slow, + then a value of 1 or 2, may be sufficient. On the other hand, on + large multi-processor, multi-threaded systems, you may find that + a higher value is in order. +

    @@ -148,7 +150,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/format.html b/doc/html/boost_regex/format.html index 3cb9149a..d67e8a27 100644 --- a/doc/html/boost_regex/format.html +++ b/doc/html/boost_regex/format.html @@ -2,8 +2,8 @@ Search and Replace Format String Syntax - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -56,7 +56,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 283cef6d..b05971ee 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -2,8 +2,8 @@ Boost-Extended Format String Syntax - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +

    Boost-Extended Format String Syntax @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -94,222 +94,222 @@ -

    - Placeholder -

    +

    + Placeholder +

    -

    - Meaning -

    +

    + Meaning +

    -

    - $& -

    +

    + $& +

    -

    - Outputs what matched the whole expression. -

    +

    + Outputs what matched the whole expression. +

    -

    - $MATCH -

    +

    + $MATCH +

    -

    - As $& -

    +

    + As $& +

    -

    - ${^MATCH} -

    +

    + ${^MATCH} +

    -

    - As $& -

    +

    + As $& +

    -

    - $` -

    +

    + $` +

    -

    - Outputs the text between the end of the last match found (or the - start of the text if no previous match was found), and the start - of the current match. -

    +

    + Outputs the text between the end of the last match found (or the + start of the text if no previous match was found), and the start + of the current match. +

    -

    - $PREMATCH -

    +

    + $PREMATCH +

    -

    - As $` -

    +

    + As $` +

    -

    - ${^PREMATCH} -

    +

    + ${^PREMATCH} +

    -

    - As $` -

    +

    + As $` +

    -

    - $' -

    +

    + $' +

    -

    - Outputs all the text following the end of the current match. -

    +

    + Outputs all the text following the end of the current match. +

    -

    - $POSTMATCH -

    +

    + $POSTMATCH +

    -

    - As $' -

    +

    + As $' +

    -

    - ${^POSTMATCH} -

    +

    + ${^POSTMATCH} +

    -

    - As $' -

    +

    + As $' +

    -

    - $+ -

    +

    + $+ +

    -

    - Outputs what matched the last marked sub-expression in the regular - expression. -

    +

    + Outputs what matched the last marked sub-expression in the regular + expression. +

    -

    - $LAST_PAREN_MATCH -

    +

    + $LAST_PAREN_MATCH +

    -

    - As $+ -

    +

    + As $+ +

    -

    - $LAST_SUBMATCH_RESULT -

    +

    + $LAST_SUBMATCH_RESULT +

    -

    - Outputs what matched the last sub-expression to be actually matched. -

    +

    + Outputs what matched the last sub-expression to be actually matched. +

    -

    - $^N -

    +

    + $^N +

    -

    - As $LAST_SUBMATCH_RESULT -

    +

    + As $LAST_SUBMATCH_RESULT +

    -

    - $$ -

    +

    + $$ +

    -

    - Outputs a literal '$' -

    +

    + Outputs a literal '$' +

    -

    - $n -

    +

    + $n +

    -

    - Outputs what matched the n'th sub-expression. -

    +

    + Outputs what matched the n'th sub-expression. +

    -

    - ${n} -

    +

    + ${n} +

    -

    - Outputs what matched the n'th sub-expression. -

    +

    + Outputs what matched the n'th sub-expression. +

    -

    - $+{NAME} -

    +

    + $+{NAME} +

    -

    - Outputs whatever matched the sub-expression named "NAME". -

    +

    + Outputs whatever matched the sub-expression named "NAME". +

    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    @@ -334,212 +334,212 @@ -

    - Escape -

    +

    + Escape +

    -

    - Meaning -

    +

    + Meaning +

    -

    - \a -

    +

    + \a +

    -

    - Outputs the bell character: '\a'. -

    +

    + Outputs the bell character: '\a'. +

    -

    - \e -

    +

    + \e +

    -

    - Outputs the ANSI escape character (code point 27). -

    +

    + Outputs the ANSI escape character (code point 27). +

    -

    - \f -

    +

    + \f +

    -

    - Outputs a form feed character: '\f' -

    +

    + Outputs a form feed character: '\f' +

    -

    - \n -

    +

    + \n +

    -

    - Outputs a newline character: '\n'. -

    +

    + Outputs a newline character: '\n'. +

    -

    - \r -

    +

    + \r +

    -

    - Outputs a carriage return character: '\r'. -

    +

    + Outputs a carriage return character: '\r'. +

    -

    - \t -

    +

    + \t +

    -

    - Outputs a tab character: '\t'. -

    +

    + Outputs a tab character: '\t'. +

    -

    - \v -

    +

    + \v +

    -

    - Outputs a vertical tab character: '\v'. -

    +

    + Outputs a vertical tab character: '\v'. +

    -

    - \xDD -

    +

    + \xDD +

    -

    - Outputs the character whose hexadecimal code point is 0xDD -

    +

    + Outputs the character whose hexadecimal code point is 0xDD +

    -

    - \x{DDDD} -

    +

    + \x{DDDD} +

    -

    - Outputs the character whose hexadecimal code point is 0xDDDDD -

    +

    + Outputs the character whose hexadecimal code point is 0xDDDDD +

    -

    - \cX -

    +

    + \cX +

    -

    - Outputs the ANSI escape sequence "escape-X". -

    +

    + Outputs the ANSI escape sequence "escape-X". +

    -

    - \D -

    +

    + \D +

    -

    - If D is a decimal digit in the range 1-9, then outputs the text that - matched sub-expression D. -

    +

    + If D is a decimal digit in the range 1-9, then outputs the text + that matched sub-expression D. +

    -

    - \l -

    +

    + \l +

    -

    - Causes the next character to be outputted, to be output in lower - case. -

    +

    + Causes the next character to be outputted, to be output in lower + case. +

    -

    - \u -

    +

    + \u +

    -

    - Causes the next character to be outputted, to be output in upper - case. -

    +

    + Causes the next character to be outputted, to be output in upper + case. +

    -

    - \L -

    +

    + \L +

    -

    - Causes all subsequent characters to be output in lower case, until - a \E is found. -

    +

    + Causes all subsequent characters to be output in lower case, until + a \E is found. +

    -

    - \U -

    +

    + \U +

    -

    - Causes all subsequent characters to be output in upper case, until - a \E is found. -

    +

    + Causes all subsequent characters to be output in upper case, until + a \E is found. +

    -

    - \E -

    +

    + \E +

    -

    - Terminates a \L or \U sequence. -

    +

    + Terminates a \L or \U sequence. +

    @@ -555,7 +555,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/format/perl_format.html b/doc/html/boost_regex/format/perl_format.html index 8330dca1..a90c55d5 100644 --- a/doc/html/boost_regex/format/perl_format.html +++ b/doc/html/boost_regex/format/perl_format.html @@ -2,8 +2,8 @@ Perl Format String Syntax - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -41,222 +41,222 @@ -

    - Placeholder -

    +

    + Placeholder +

    -

    - Meaning -

    +

    + Meaning +

    -

    - $& -

    +

    + $& +

    -

    - Outputs what matched the whole expression. -

    +

    + Outputs what matched the whole expression. +

    -

    - $MATCH -

    +

    + $MATCH +

    -

    - As $& -

    +

    + As $& +

    -

    - ${^MATCH} -

    +

    + ${^MATCH} +

    -

    - As $& -

    +

    + As $& +

    -

    - $` -

    +

    + $` +

    -

    - Outputs the text between the end of the last match found (or the - start of the text if no previous match was found), and the start - of the current match. -

    +

    + Outputs the text between the end of the last match found (or the + start of the text if no previous match was found), and the start + of the current match. +

    -

    - $PREMATCH -

    +

    + $PREMATCH +

    -

    - As $` -

    +

    + As $` +

    -

    - ${^PREMATCH} -

    +

    + ${^PREMATCH} +

    -

    - As $` -

    +

    + As $` +

    -

    - $' -

    +

    + $' +

    -

    - Outputs all the text following the end of the current match. -

    +

    + Outputs all the text following the end of the current match. +

    -

    - $POSTMATCH -

    +

    + $POSTMATCH +

    -

    - As $' -

    +

    + As $' +

    -

    - ${^POSTMATCH} -

    +

    + ${^POSTMATCH} +

    -

    - As $' -

    +

    + As $' +

    -

    - $+ -

    +

    + $+ +

    -

    - Outputs what matched the last marked sub-expression in the regular - expression. -

    +

    + Outputs what matched the last marked sub-expression in the regular + expression. +

    -

    - $LAST_PAREN_MATCH -

    +

    + $LAST_PAREN_MATCH +

    -

    - As $+ -

    +

    + As $+ +

    -

    - $LAST_SUBMATCH_RESULT -

    +

    + $LAST_SUBMATCH_RESULT +

    -

    - Outputs what matched the last sub-expression to be actually matched. -

    +

    + Outputs what matched the last sub-expression to be actually matched. +

    -

    - $^N -

    +

    + $^N +

    -

    - As $LAST_SUBMATCH_RESULT -

    +

    + As $LAST_SUBMATCH_RESULT +

    -

    - $$ -

    +

    + $$ +

    -

    - Outputs a literal '$' -

    +

    + Outputs a literal '$' +

    -

    - $n -

    +

    + $n +

    -

    - Outputs what matched the n'th sub-expression. -

    +

    + Outputs what matched the n'th sub-expression. +

    -

    - ${n} -

    +

    + ${n} +

    -

    - Outputs what matched the n'th sub-expression. -

    +

    + Outputs what matched the n'th sub-expression. +

    -

    - $+{NAME} -

    +

    + $+{NAME} +

    -

    - Outputs whatever matched the sub-expression named "NAME". -

    +

    + Outputs whatever matched the sub-expression named "NAME". +

    @@ -276,212 +276,212 @@ -

    - Escape -

    +

    + Escape +

    -

    - Meaning -

    +

    + Meaning +

    -

    - \a -

    +

    + \a +

    -

    - Outputs the bell character: '\a'. -

    +

    + Outputs the bell character: '\a'. +

    -

    - \e -

    +

    + \e +

    -

    - Outputs the ANSI escape character (code point 27). -

    +

    + Outputs the ANSI escape character (code point 27). +

    -

    - \f -

    +

    + \f +

    -

    - Outputs a form feed character: '\f' -

    +

    + Outputs a form feed character: '\f' +

    -

    - \n -

    +

    + \n +

    -

    - Outputs a newline character: '\n'. -

    +

    + Outputs a newline character: '\n'. +

    -

    - \r -

    +

    + \r +

    -

    - Outputs a carriage return character: '\r'. -

    +

    + Outputs a carriage return character: '\r'. +

    -

    - \t -

    +

    + \t +

    -

    - Outputs a tab character: '\t'. -

    +

    + Outputs a tab character: '\t'. +

    -

    - \v -

    +

    + \v +

    -

    - Outputs a vertical tab character: '\v'. -

    +

    + Outputs a vertical tab character: '\v'. +

    -

    - \xDD -

    +

    + \xDD +

    -

    - Outputs the character whose hexadecimal code point is 0xDD -

    +

    + Outputs the character whose hexadecimal code point is 0xDD +

    -

    - \x{DDDD} -

    +

    + \x{DDDD} +

    -

    - Outputs the character whose hexadecimal code point is 0xDDDDD -

    +

    + Outputs the character whose hexadecimal code point is 0xDDDDD +

    -

    - \cX -

    +

    + \cX +

    -

    - Outputs the ANSI escape sequence "escape-X". -

    +

    + Outputs the ANSI escape sequence "escape-X". +

    -

    - \D -

    +

    + \D +

    -

    - If D is a decimal digit in the range 1-9, then outputs the text that - matched sub-expression D. -

    +

    + If D is a decimal digit in the range 1-9, then outputs the text + that matched sub-expression D. +

    -

    - \l -

    +

    + \l +

    -

    - Causes the next character to be outputted, to be output in lower - case. -

    +

    + Causes the next character to be outputted, to be output in lower + case. +

    -

    - \u -

    +

    + \u +

    -

    - Causes the next character to be outputted, to be output in upper - case. -

    +

    + Causes the next character to be outputted, to be output in upper + case. +

    -

    - \L -

    +

    + \L +

    -

    - Causes all subsequent characters to be output in lower case, until - a \E is found. -

    +

    + Causes all subsequent characters to be output in lower case, until + a \E is found. +

    -

    - \U -

    +

    + \U +

    -

    - Causes all subsequent characters to be output in upper case, until - a \E is found. -

    +

    + Causes all subsequent characters to be output in upper case, until + a \E is found. +

    -

    - \E -

    +

    + \E +

    -

    - Terminates a \L or \U sequence. -

    +

    + Terminates a \L or \U sequence. +

    @@ -497,7 +497,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/format/sed_format.html b/doc/html/boost_regex/format/sed_format.html index e721e1f9..1f1669ea 100644 --- a/doc/html/boost_regex/format/sed_format.html +++ b/doc/html/boost_regex/format/sed_format.html @@ -2,8 +2,8 @@ Sed Format String Syntax - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -36,41 +36,41 @@ -

    - character -

    +

    + character +

    -

    - description -

    +

    + description +

    -

    - & -

    +

    + & +

    -

    - The ampersand character is replaced in the output stream by the the - whole of what matched the regular expression. Use \& to output - a literal '&' character. -

    +

    + The ampersand character is replaced in the output stream by the + the whole of what matched the regular expression. Use \& to + output a literal '&' character. +

    -

    - \ -

    +

    + \ +

    -

    - Specifies an escape sequence. -

    +

    + Specifies an escape sequence. +

    @@ -86,148 +86,148 @@ -

    - Escape -

    +

    + Escape +

    -

    - Meaning -

    +

    + Meaning +

    -

    - \a -

    +

    + \a +

    -

    - Outputs the bell character: '\a'. -

    +

    + Outputs the bell character: '\a'. +

    -

    - \e -

    +

    + \e +

    -

    - Outputs the ANSI escape character (code point 27). -

    +

    + Outputs the ANSI escape character (code point 27). +

    -

    - \f -

    +

    + \f +

    -

    - Outputs a form feed character: '\f' -

    +

    + Outputs a form feed character: '\f' +

    -

    - \n -

    +

    + \n +

    -

    - Outputs a newline character: '\n'. -

    +

    + Outputs a newline character: '\n'. +

    -

    - \r -

    +

    + \r +

    -

    - Outputs a carriage return character: '\r'. -

    +

    + Outputs a carriage return character: '\r'. +

    -

    - \t -

    +

    + \t +

    -

    - Outputs a tab character: '\t'. -

    +

    + Outputs a tab character: '\t'. +

    -

    - \v -

    +

    + \v +

    -

    - Outputs a vertical tab character: '\v'. -

    +

    + Outputs a vertical tab character: '\v'. +

    -

    - \xDD -

    +

    + \xDD +

    -

    - Outputs the character whose hexadecimal code point is 0xDD -

    +

    + Outputs the character whose hexadecimal code point is 0xDD +

    -

    - \x{DDDD} -

    +

    + \x{DDDD} +

    -

    - Outputs the character whose hexadecimal code point is 0xDDDDD -

    +

    + Outputs the character whose hexadecimal code point is 0xDDDDD +

    -

    - \cX -

    +

    + \cX +

    -

    - Outputs the ANSI escape sequence "escape-X". -

    +

    + Outputs the ANSI escape sequence "escape-X". +

    -

    - \D -

    +

    + \D +

    -

    - If D is a decimal digit in the range 1-9, then outputs the text that - matched sub-expression D. -

    +

    + If D is a decimal digit in the range 1-9, then outputs the text + that matched sub-expression D. +

    @@ -243,7 +243,7 @@
    -PrevUpHomeNext +PrevUpHomeNext
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index e5cc3919..92c2e7a7 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -2,8 +2,8 @@ Building and Installing the Library - - + + @@ -20,9 +20,9 @@
    -PrevUpHomeNext +PrevUpHomeNext
    -
    +
    @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,27 +96,26 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    -
      -
    • - Open up a console window and change to the <boost>\libs\regex\build - directory. -
    • -
    • - Select the appropriate makefile (bcb4.mak for C++ Builder 4, bcb5.mak for - C++ Builder 5, and bcb6.mak for C++ Builder 6). -
    • -
    • - Invoke the makefile (pass the full path to your version of make if you have - more than one version installed, the makefile relies on the path to make - to obtain your C++ Builder installation directory and tools) for example: -
    • +
        +
      • + Open up a console window and change to the <boost>\libs\regex\build directory. +
      • +
      • + Select the appropriate makefile (bcb4.mak for C++ Builder 4, bcb5.mak for + C++ Builder 5, and bcb6.mak for C++ Builder 6). +
      • +
      • + Invoke the makefile (pass the full path to your version of make if you + have more than one version installed, the makefile relies on the path to + make to obtain your C++ Builder installation directory and tools) for example: +
      make -fbcb5.mak

      @@ -166,7 +165,7 @@ a lot in compile times!

      - + Microsoft Visual C++ 6, 7, 7.1 and 8
      @@ -224,36 +223,37 @@ There are several important caveats to remember when using Boost.Regex with Microsoft's Compiler:

      -
        -
      • - There have been some reports of compiler-optimization bugs affecting this - library, (particularly with VC6 versions prior to service patch 5) the workaround - is to build the library using /Oityb1 rather than /O2. That is to use all - optimization settings except /Oa. This problem is reported to affect some - standard library code as well ( in fact I'm not sure if the problem is with - the regex code or the underlying standard library), so it's probably worthwhile - applying this workaround in normal practice in any case. -
      • -
      • - If you have replaced the C++ standard library that comes with VC6, then when - you build the library you must ensure that the environment variables "INCLUDE" - and "LIB" have been updated to reflect the include and library - paths for the new library - see vcvars32.bat (part of your Visual Studio - installation) for more details. -
      • -
      • - If you are building with the full STLPort v4.x, then use the vc6-stlport.mak - file provided and set the environment variable STLPORT_PATH to point to the - location of your STLPort installation (Note that the full STLPort libraries - appear not to support single-thread static builds). -
      • -
      • - If you are building your application with /Zc:wchar_t then you will need - to modify the makefile to add /Zc:wchar_t before building the library. -
      • +
          +
        • + There have been some reports of compiler-optimization bugs affecting this + library, (particularly with VC6 versions prior to service patch 5) the + workaround is to build the library using /Oityb1 rather than /O2. That + is to use all optimization settings except /Oa. This problem is reported + to affect some standard library code as well ( in fact I'm not sure if + the problem is with the regex code or the underlying standard library), + so it's probably worthwhile applying this workaround in normal practice + in any case. +
        • +
        • + If you have replaced the C++ standard library that comes with VC6, then + when you build the library you must ensure that the environment variables + "INCLUDE" and "LIB" have been updated to reflect the + include and library paths for the new library - see vcvars32.bat (part + of your Visual Studio installation) for more details. +
        • +
        • + If you are building with the full STLPort v4.x, then use the vc6-stlport.mak + file provided and set the environment variable STLPORT_PATH to point to + the location of your STLPort installation (Note that the full STLPort libraries + appear not to support single-thread static builds). +
        • +
        • + If you are building your application with /Zc:wchar_t then you will need + to modify the makefile to add /Zc:wchar_t before building the library. +
        - + GCC(2.95 and later)

        @@ -302,7 +302,7 @@ see the config library documentation.

        - + Sun Workshop 6.1

        @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

        - + Makefiles for Other compilers
        @@ -366,7 +366,7 @@
        -PrevUpHomeNext +PrevUpHomeNext
        diff --git a/doc/html/boost_regex/introduction_and_overview.html b/doc/html/boost_regex/introduction_and_overview.html index ab4ae3dc..0b7397fa 100644 --- a/doc/html/boost_regex/introduction_and_overview.html +++ b/doc/html/boost_regex/introduction_and_overview.html @@ -2,8 +2,8 @@ Introduction and Overview - - + + @@ -20,9 +20,9 @@
        -PrevUpHomeNext +PrevUpHomeNext
        -
        +

        Introduction and Overview @@ -209,7 +209,7 @@
        -PrevUpHomeNext +PrevUpHomeNext
        diff --git a/doc/html/boost_regex/partial_matches.html b/doc/html/boost_regex/partial_matches.html index dd241efd..ecea7888 100644 --- a/doc/html/boost_regex/partial_matches.html +++ b/doc/html/boost_regex/partial_matches.html @@ -2,8 +2,8 @@ Partial Matches - - + + @@ -20,9 +20,9 @@
        -PrevUpHomeNext +PrevUpHomeNext
        -
        +
        @@ -54,110 +54,108 @@ -

        -

        -

        - Result -

        +

        + Result +

        -

        - M[0].matched -

        +

        + M[0].matched +

        -

        - M[0].first -

        +

        + M[0].first +

        -

        - M[0].second -

        +

        + M[0].second +

        -

        - No match -

        +

        + No match +

        -

        - False -

        +

        + False +

        -

        - Undefined -

        +

        + Undefined +

        -

        - Undefined -

        +

        + Undefined +

        -

        - Undefined -

        +

        + Undefined +

        -

        - Partial match -

        +

        + Partial match +

        -

        - True -

        +

        + True +

        -

        - False -

        +

        + False +

        -

        - Start of partial match. -

        +

        + Start of partial match. +

        -

        - End of partial match (end of text). -

        +

        + End of partial match (end of text). +

        -

        - Full match -

        +

        + Full match +

        -

        - True -

        +

        + True +

        -

        - True -

        +

        + True +

        -

        - Start of full match. -

        +

        + Start of full match. +

        -

        - End of full match. -

        +

        + End of full match. +

        @@ -166,20 +164,20 @@ Be aware that using partial matches can sometimes result in somewhat imperfect behavior:

        -
          -
        • - There are some expressions, such as ".*abc" that will always produce - a partial match. This problem can be reduced by careful construction of the - regular expressions used, or by setting flags like match_not_dot_newline - so that expressions like .* can't match past line boundaries. -
        • -
        • - Boost.Regex currently prefers leftmost matches to full matches, so for example - matching "abc|b" against "ab" produces a partial match - against the "ab" rather than a full match against "b". - It's more efficient to work this way, but may not be the behavior you want - in all situations. -
        • +
            +
          • + There are some expressions, such as ".*abc" that will always + produce a partial match. This problem can be reduced by careful construction + of the regular expressions used, or by setting flags like match_not_dot_newline + so that expressions like .* can't match past line boundaries. +
          • +
          • + Boost.Regex currently prefers leftmost matches to full matches, so for + example matching "abc|b" against "ab" produces a partial + match against the "ab" rather than a full match against "b". + It's more efficient to work this way, but may not be the behavior you want + in all situations. +

          The following example tests to see whether the text could be a valid credit @@ -301,7 +299,7 @@


          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html index f50f4040..88c3ff6a 100644 --- a/doc/html/boost_regex/ref.html +++ b/doc/html/boost_regex/ref.html @@ -2,8 +2,8 @@ Reference - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +
          @@ -116,7 +116,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 02cef4bc..fb150ada 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -2,8 +2,8 @@ bad_expression - - + + @@ -20,14 +20,14 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +
          - + Synopsis
          #include <boost/pattern_except.hpp>
          @@ -54,7 +54,7 @@
           } // namespace boost
           
          - + Description
          regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
          @@ -97,7 +97,7 @@
           
           
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html index 92d3b6c3..9b16e6ba 100644 --- a/doc/html/boost_regex/ref/basic_regex.html +++ b/doc/html/boost_regex/ref/basic_regex.html @@ -2,8 +2,8 @@ basic_regex - - + + @@ -20,14 +20,14 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +
          - + Synopsis
          #include <boost/regex.hpp>
          @@ -37,19 +37,19 @@
                   encapsulates regular expression parsing and compilation. The class takes
                   two template parameters:
                 

          -
            -
          • -charT: determines the character - type, i.e. either char or - wchar_t; see charT - concept. -
          • -
          • -traits: determines the - behavior of the character type, for example which character class names - are recognized. A default traits class is provided: regex_traits<charT>. See also traits - concept. -
          • +
              +
            • + charT: determines the + character type, i.e. either char + or wchar_t; see charT + concept. +
            • +
            • + traits: determines the + behavior of the character type, for example which character class names + are recognized. A default traits class is provided: regex_traits<charT>. See also traits + concept. +

            For ease of use there are two typedefs that define the two standard basic_regex instances, unless you want @@ -244,7 +244,7 @@ } // namespace boost

          - + Description

          @@ -318,16 +318,14 @@ then a constant with the same name, type and value is declared within the scope of basic_regex.

          -

          -

          -
          basic_regex();
          +
          basic_regex();
           

          Effects: Constructs an object of class basic_regex.

          -

          Table 1. basic_regex default construction postconditions

          +

          Table 1. basic_regex default construction postconditions

          @@ -335,59 +333,57 @@ +

          + Element +

          + +

          + Value +

          + +

          + empty() +

          + +

          + true +

          + +

          + size() +

          + +

          + 0 +

          + +

          + str() +

          + +

          + basic_string<charT>() +

          +
          -

          - Element -

          -
          -

          - Value -

          -
          -

          - empty() -

          -
          -

          - true -

          -
          -

          - size() -

          -
          -

          - 0 -

          -
          -

          - str() -

          -
          -

          - basic_string<charT>() -

          -
          -

          -

          -
          basic_regex(const charT* p, flag_type f = regex_constants::normal);
          +
          basic_regex(const charT* p, flag_type f = regex_constants::normal);
           

          Requires: p shall not @@ -407,7 +403,7 @@ flags specified in f.

          -

          Table 2. Postconditions for basic_regex construction

          +

          Table 2. Postconditions for basic_regex construction

          @@ -415,83 +411,81 @@ +

          + Element +

          + +

          + Value +

          + +

          + empty() +

          + +

          + false +

          + +

          + size() +

          + +

          + char_traits<charT>::length(p) +

          + +

          + str() +

          + +

          + basic_string<charT>(p) +

          + +

          + flags() +

          + +

          + f +

          + +

          + mark_count() +

          + +

          + The number of marked sub-expressions within the expression. +

          +
          -

          - Element -

          -
          -

          - Value -

          -
          -

          - empty() -

          -
          -

          - false -

          -
          -

          - size() -

          -
          -

          - char_traits<charT>::length(p) -

          -
          -

          - str() -

          -
          -

          - basic_string<charT>(p) -

          -
          -

          - flags() -

          -
          -

          - f -

          -
          -

          - mark_count() -

          -
          -

          - The number of marked sub-expressions within the expression. -

          -
          -

          -

          -
          basic_regex(const charT* p1, const charT* p2, 
          +
          basic_regex(const charT* p1, const charT* p2, 
                       flag_type f = regex_constants::normal);
           

          @@ -512,7 +506,7 @@ specified in f.

          -

          Table 3. Postconditions for basic_regex construction

          +

          Table 3. Postconditions for basic_regex construction

          @@ -520,83 +514,81 @@ +

          + Element +

          + +

          + Value +

          + +

          + empty() +

          + +

          + false +

          + +

          + size() +

          + +

          + std::distance(p1,p2) +

          + +

          + str() +

          + +

          + basic_string<charT>(p1,p2) +

          + +

          + flags() +

          + +

          + f +

          + +

          + mark_count() +

          + +

          + The number of marked sub-expressions within the expression. +

          +
          -

          - Element -

          -
          -

          - Value -

          -
          -

          - empty() -

          -
          -

          - false -

          -
          -

          - size() -

          -
          -

          - std::distance(p1,p2) -

          -
          -

          - str() -

          -
          -

          - basic_string<charT>(p1,p2) -

          -
          -

          - flags() -

          -
          -

          - f -

          -
          -

          - mark_count() -

          -
          -

          - The number of marked sub-expressions within the expression. -

          -
          -

          -

          -
          basic_regex(const charT* p, size_type len, flag_type f);
          +
          basic_regex(const charT* p, size_type len, flag_type f);
           

          Requires: p shall not @@ -616,7 +608,7 @@ according the option flags specified in f.

          -

          Table 4. Postconditions for basic_regex construction

          +

          Table 4. Postconditions for basic_regex construction

          @@ -624,92 +616,89 @@ +

          + Element +

          + +

          + Value +

          + +

          + empty() +

          + +

          + false +

          + +

          + size() +

          + +

          + len +

          + +

          + str() +

          + +

          + basic_string<charT>(p, + len) +

          + +

          + flags() +

          + +

          + f +

          + +

          + mark_count() +

          + +

          + The number of marked sub-expressions within the expression. +

          +
          -

          - Element -

          -
          -

          - Value -

          -
          -

          - empty() -

          -
          -

          - false -

          -
          -

          - size() -

          -
          -

          - len -

          -
          -

          - str() -

          -
          -

          - basic_string<charT>(p, len) -

          -
          -

          - flags() -

          -
          -

          - f -

          -
          -

          - mark_count() -

          -
          -

          - The number of marked sub-expressions within the expression. -

          -
          -

          -

          -
          basic_regex(const basic_regex& e);
          +
          basic_regex(const basic_regex& e);
           

          Effects: Constructs an object of class basic_regex as a copy of the object e.

          -

          -

          -
          template <class ST, class SA>
          +
          template <class ST, class SA>
           basic_regex(const basic_string<charT, ST, SA>& s, 
                       flag_type f = regex_constants::normal);
           
          @@ -727,7 +716,7 @@ flags specified in f.

          -

          Table 5. Postconditions for basic_regex construction

          +

          Table 5. Postconditions for basic_regex construction

          @@ -735,83 +724,81 @@ +

          + Element +

          + +

          + Value +

          + +

          + empty() +

          + +

          + false +

          + +

          + size() +

          + +

          + s.size() +

          + +

          + str() +

          + +

          + s +

          + +

          + flags() +

          + +

          + f +

          + +

          + mark_count() +

          + +

          + The number of marked sub-expressions within the expression. +

          +
          -

          - Element -

          -
          -

          - Value -

          -
          -

          - empty() -

          -
          -

          - false -

          -
          -

          - size() -

          -
          -

          - s.size() -

          -
          -

          - str() -

          -
          -

          - s -

          -
          -

          - flags() -

          -
          -

          - f -

          -
          -

          - mark_count() -

          -
          -

          - The number of marked sub-expressions within the expression. -

          -
          -

          -

          -
          template <class ForwardIterator>
          +
          template <class ForwardIterator>
           basic_regex(ForwardIterator first, ForwardIterator last, 
                       flag_type f = regex_constants::normal);
           
          @@ -829,7 +816,7 @@ flags specified in f.

          -

          Table 6. Postconditions for basic_regex construction

          +

          Table 6. Postconditions for basic_regex construction

          @@ -837,90 +824,86 @@ +

          + Element +

          + +

          + Value +

          + +

          + empty() +

          + +

          + false +

          + +

          + size() +

          + +

          + distance(first,last) +

          + +

          + str() +

          + +

          + basic_string<charT>(first,last) +

          + +

          + flags() +

          + +

          + f +

          + +

          + mark_count() +

          + +

          + The number of marked sub-expressions within the expression. +

          +
          -

          - Element -

          -
          -

          - Value -

          -
          -

          - empty() -

          -
          -

          - false -

          -
          -

          - size() -

          -
          -

          - distance(first,last) -

          -
          -

          - str() -

          -
          -

          - basic_string<charT>(first,last) -

          -
          -

          - flags() -

          -
          -

          - f -

          -
          -

          - mark_count() -

          -
          -

          - The number of marked sub-expressions within the expression. -

          -
          -

          -

          -
          basic_regex& operator=(const basic_regex& e);
          +
          basic_regex& operator=(const basic_regex& e);
           

          Effects: Returns the result of assign(e.str(), e.flags()).

          -

          -

          -
          basic_regex& operator=(const charT* ptr);
          +
          basic_regex& operator=(const charT* ptr);
           

          Requires: p shall not @@ -929,17 +912,13 @@

          Effects: Returns the result of assign(ptr).

          -

          -

          -
          template <class ST, class SA>
          +
          template <class ST, class SA>
           basic_regex& operator=(const basic_string<charT, ST, SA>& p);
           

          Effects: Returns the result of assign(p).

          -

          -

          -
          std::pair<const_iterator, const_iterator> subexpression(size_type n) const;
          +
          std::pair<const_iterator, const_iterator> subexpression(size_type n) const;
           

          Effects: Returns a pair of iterators denoting @@ -953,78 +932,58 @@ set. Argument n must be in within the range 1 <= n < mark_count().

          -

          -

          -
          const_iterator begin() const;
          +
          const_iterator begin() const;
           

          Effects: Returns a starting iterator to a sequence of characters representing the regular expression.

          -

          -

          -
          const_iterator end() const;
          +
          const_iterator end() const;
           

          Effects: Returns termination iterator to a sequence of characters representing the regular expression.

          -

          -

          -
          size_type size() const;
          +
          size_type size() const;
           

          Effects: Returns the length of the sequence of characters representing the regular expression.

          -

          -

          -
          size_type max_size() const;
          +
          size_type max_size() const;
           

          Effects: Returns the maximum length of the sequence of characters representing the regular expression.

          -

          -

          -
          bool empty() const;
          +
          bool empty() const;
           

          Effects: Returns true if the object does not contain a valid regular expression, otherwise false.

          -

          -

          -
          unsigned mark_count() const;
          +
          unsigned mark_count() const;
           

          Effects: Returns the number of marked sub-expressions within the regular expresion.

          -

          -

          -
          basic_regex& assign(const basic_regex& that);
          +
          basic_regex& assign(const basic_regex& that);
           

          Effects: Returns assign(that.str(), that.flags()).

          -

          -

          -
          basic_regex& assign(const charT* ptr, flag_type f = regex_constants::normal);
          +
          basic_regex& assign(const charT* ptr, flag_type f = regex_constants::normal);
           

          Effects: Returns assign(string_type(ptr), f).

          -

          -

          -
          basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
          +
          basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
           

          Effects: Returns assign(string_type(ptr, len), f).

          -

          -

          -
          template <class string_traits, class A>
          +
          template <class string_traits, class A>
           basic_regex& assign(const basic_string<charT, string_traits, A>& s,
                             flag_type f = regex_constants::normal);
           
          @@ -1043,7 +1002,7 @@ in f.

          -

          Table 7. Postconditions for basic_regex::assign

          +

          Table 7. Postconditions for basic_regex::assign

          @@ -1051,83 +1010,81 @@ +

          + Element +

          + +

          + Value +

          + +

          + empty() +

          + +

          + false +

          + +

          + size() +

          + +

          + s.size() +

          + +

          + str() +

          + +

          + s +

          + +

          + flags() +

          + +

          + f +

          + +

          + mark_count() +

          + +

          + The number of marked sub-expressions within the expression. +

          +
          -

          - Element -

          -
          -

          - Value -

          -
          -

          - empty() -

          -
          -

          - false -

          -
          -

          - size() -

          -
          -

          - s.size() -

          -
          -

          - str() -

          -
          -

          - s -

          -
          -

          - flags() -

          -
          -

          - f -

          -
          -

          - mark_count() -

          -
          -

          - The number of marked sub-expressions within the expression. -

          -
          -

          -

          -
          template <class InputIterator>
          +
          template <class InputIterator>
           basic_regex& assign(InputIterator first, InputIterator last,
                               flag_type f = regex_constants::normal);
           
          @@ -1139,44 +1096,34 @@

          Effects: Returns assign(string_type(first, last), f).

          -

          -

          -
          flag_type flags() const;
          +
          flag_type flags() const;
           

          Effects: Returns a copy of the regular expression syntax flags that were passed to the object's constructor, or the last call to assign.

          -

          -

          -
          int status() const;
          +
          int status() const;
           

          Effects: Returns zero if the expression contains a valid regular expression, otherwise an error code. This member function is retained for use in environments that cannot use exception handling.

          -

          -

          -
          basic_string<charT> str() const;
          +
          basic_string<charT> str() const;
           

          Effects: Returns a copy of the character sequence passed to the object's constructor, or the last call to assign.

          -

          -

          -
          int compare(basic_regex& e)const;
          +
          int compare(basic_regex& e)const;
           

          Effects: If flags() == e.flags() then returns str().compare(e.str()), otherwise returns flags() - e.flags().

          -

          -

          -
          locale_type imbue(locale_type l);
          +
          locale_type imbue(locale_type l);
           

          Effects: Returns the result of traits_inst.imbue(l) where @@ -1188,9 +1135,7 @@

          Postcondition: empty() == true.

          -

          -

          -
          locale_type getloc() const;
          +
          locale_type getloc() const;
           

          Effects: Returns the result of traits_inst.getloc() @@ -1198,9 +1143,7 @@ initialized) instance of the template parameter traits stored within the object.

          -

          -

          -
          void swap(basic_regex& e) throw();
          +
          void swap(basic_regex& e) throw();
           

          Effects: Swaps the contents of the two regular @@ -1216,7 +1159,7 @@

          - +
          [Note][Note] Note

          @@ -1227,9 +1170,7 @@ code that may need to be ported to other implementations of basic_regex.

          -

          -

          -
          template <class charT, class traits>
          +
          template <class charT, class traits>
           bool operator == (const basic_regex<charT, traits>& lhs,
                             const basic_regex<charT, traits>& rhs);
           
          @@ -1237,9 +1178,7 @@ Effects: Returns lhs.compare(rhs) == 0.

          -

          -

          -
          template <class charT, class traits>
          +
          template <class charT, class traits>
           bool operator != (const basic_regex<charT, traits>& lhs,
                             const basic_regex<charT, traits>& rhs);
           
          @@ -1247,9 +1186,7 @@ Effects: Returns lhs.compare(rhs) != 0.

          -

          -

          -
          template <class charT, class traits>
          +
          template <class charT, class traits>
           bool operator < (const basic_regex<charT, traits>& lhs,
                          const basic_regex<charT, traits>& rhs);
           
          @@ -1257,9 +1194,7 @@ Effects: Returns lhs.compare(rhs) < 0.

          -

          -

          -
          template <class charT, class traits>
          +
          template <class charT, class traits>
           bool operator <= (const basic_regex<charT, traits>& lhs,
                             const basic_regex<charT, traits>& rhs);
           
          @@ -1267,9 +1202,7 @@ Effects: Returns lhs.compare(rhs) <= 0.

          -

          -

          -
          template <class charT, class traits>
          +
          template <class charT, class traits>
           bool operator >= (const basic_regex<charT, traits>& lhs,
                             const basic_regex<charT, traits>& rhs);
           
          @@ -1277,9 +1210,7 @@ Effects: Returns lhs.compare(rhs) >= 0.

          -

          -

          -
          template <class charT, class traits>
          +
          template <class charT, class traits>
           bool operator > (const basic_regex<charT, traits>& lhs,
                          const basic_regex<charT, traits>& rhs);
           
          @@ -1289,7 +1220,7 @@

          - +
          [Note][Note] Note

          @@ -1297,9 +1228,7 @@ outputs the textual representation of the expression to the stream.

          -

          -

          -
          template <class charT, class io_traits, class re_traits>
          +
          template <class charT, class io_traits, class re_traits>
           basic_ostream<charT, io_traits>&
              operator << (basic_ostream<charT, io_traits>& os
                          const basic_regex<charT, re_traits>& e);
          @@ -1307,9 +1236,7 @@
           

          Effects: Returns (os << e.str()).

          -

          -

          -
          template <class charT, class traits>
          +
          template <class charT, class traits>
           void swap(basic_regex<charT, traits>& lhs,
                    basic_regex<charT, traits>& rhs);
           
          @@ -1327,7 +1254,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/concepts.html b/doc/html/boost_regex/ref/concepts.html index 3bb51add..9a9dc33c 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -2,8 +2,8 @@ Concepts - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +
          @@ -44,7 +44,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index fa5d9a20..5a12e5f8 100644 --- a/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -2,8 +2,8 @@ charT Requirements - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +
          @@ -44,213 +44,213 @@ -

          - Expression -

          +

          + Expression +

          -

          - Return type -

          +

          + Return type +

          -

          - Assertion / Note / Pre- / Post-condition -

          +

          + Assertion / Note / Pre- / Post-condition +

          -

          - charT c -

          +

          + charT c +

          -

          - charT -

          +

          + charT +

          -

          - Default constructor (must be trivial). -

          +

          + Default constructor (must be trivial). +

          -

          - charT c(c1) -

          +

          + charT c(c1) +

          -

          - charT -

          +

          + charT +

          -

          - Copy constructor (must be trivial). -

          +

          + Copy constructor (must be trivial). +

          -

          - c1 = c2 -

          +

          + c1 = c2 +

          -

          - charT -

          +

          + charT +

          -

          - Assignment operator (must be trivial). -

          +

          + Assignment operator (must be trivial). +

          -

          - c1 == c2 -

          +

          + c1 == c2 +

          -

          - bool -

          +

          + bool +

          -

          - true if c1 has the same value as c2. -

          +

          + true if c1 has the same value as c2. +

          -

          - c1 != c2 -

          +

          + c1 != c2 +

          -

          - bool -

          +

          + bool +

          -

          - true if c1 and c2 are not equal. -

          +

          + true if c1 and c2 are not equal. +

          -

          - c1 < c2 -

          +

          + c1 < c2 +

          -

          - bool -

          +

          + bool +

          -

          - true if the value of c1 is less than c2. -

          +

          + true if the value of c1 is less than c2. +

          -

          - c1 > c2 -

          +

          + c1 > c2 +

          -

          - bool -

          +

          + bool +

          -

          - true if the value of c1 is greater than c2. -

          +

          + true if the value of c1 is greater than c2. +

          -

          - c1 <= c2 -

          +

          + c1 <= c2 +

          -

          - bool -

          +

          + bool +

          -

          - true if c1 is less than or equal to c2. -

          +

          + true if c1 is less than or equal to c2. +

          -

          - c1 >= c2 -

          +

          + c1 >= c2 +

          -

          - bool -

          +

          + bool +

          -

          - true if c1 is greater than or equal to c2. -

          +

          + true if c1 is greater than or equal to c2. +

          -

          - intmax_t i = c1 -

          +

          + intmax_t i = c1 +

          -

          - int -

          +

          + int +

          -

          - charT must be convertible to an integral type. -

          -

          - Note: type charT is not required to support this operation, if - the traits class used supports the full Boost-specific interface, - rather than the minimal standardised-interface (see traits class - requirements below). -

          +

          + charT must be convertible to an integral type. +

          +

          + Note: type charT is not required to support this operation, if + the traits class used supports the full Boost-specific interface, + rather than the minimal standardised-interface (see traits class + requirements below). +

          -

          - charT c(i); -

          +

          + charT c(i); +

          -

          - charT -

          +

          + charT +

          -

          - charT must be constructable from an integral type. -

          +

          + charT must be constructable from an integral type. +

          @@ -266,7 +266,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index 8abbbb52..f660e0ca 100644 --- a/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -2,8 +2,8 @@ Iterator Requirements - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +

          Iterator Requirements @@ -41,7 +41,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 01cb63c7..aa7aae58 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -2,8 +2,8 @@ Traits Class Requirements - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +

          Traits Class Requirements @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

          - + Minimal requirements.
          @@ -64,324 +64,321 @@ -

          - Expression -

          +

          + Expression +

          -

          - Return type -

          +

          + Return type +

          -

          - Assertion / Note Pre / Post condition -

          +

          + Assertion / Note Pre / Post condition +

          -

          - X::char_type -

          +

          + X::char_type +

          -

          - charT -

          +

          + charT +

          -

          - The character container type used in the implementation of class - template basic_regex. -

          +

          + The character container type used in the implementation of class + template basic_regex. +

          -

          - X::size_type -

          +

          + X::size_type +

          -

          -

          -

          - An unsigned integer type, capable of holding the length of a null-terminated - string of charT's. -

          +

          + An unsigned integer type, capable of holding the length of a + null-terminated string of charT's. +

          -

          - X::string_type -

          +

          + X::string_type +

          -

          - std::basic_string<charT> or std::vector<charT> -

          +

          + std::basic_string<charT> or std::vector<charT> +

          -

          -

          -

          - X::locale_type -

          +

          + X::locale_type +

          -

          - Implementation defined -

          +

          + Implementation defined +

          -

          - A copy constructible type that represents the locale used by the - traits class. -

          +

          + A copy constructible type that represents the locale used by + the traits class. +

          -

          - X::char_class_type -

          +

          + X::char_class_type +

          -

          - Implementation defined -

          +

          + Implementation defined +

          -

          - A bitmask type representing a particular character classification. - Multiple values of this type can be bitwise-or'ed together to obtain - a new valid value. -

          +

          + A bitmask type representing a particular character classification. + Multiple values of this type can be bitwise-or'ed together to + obtain a new valid value. +

          -

          - X::length(p) -

          +

          + X::length(p) +

          -

          - X::size_type -

          +

          + X::size_type +

          -

          - Yields the smallest i such that p[i] == 0. Complexity is linear - in i. -

          +

          + Yields the smallest i such that p[i] == 0. Complexity is linear + in i. +

          -

          - v.translate(c) -

          +

          + v.translate(c) +

          -

          - X::char_type -

          +

          + X::char_type +

          -

          - Returns a character such that for any character d that is to be - considered equivalent to c then v.translate(c) == v.translate(d). -

          +

          + Returns a character such that for any character d that is to + be considered equivalent to c then v.translate(c) == v.translate(d). +

          -

          - v.translate_nocase(c) -

          +

          + v.translate_nocase(c) +

          -

          - X::char_type -

          +

          + X::char_type +

          -

          - For all characters C that are to be considered equivalent to c - when comparisons are to be performed without regard to case, then - v.translate_nocase(c) == v.translate_nocase(C). -

          +

          + For all characters C that are to be considered equivalent to + c when comparisons are to be performed without regard to case, + then v.translate_nocase(c) == v.translate_nocase(C). +

          -

          - v.transform(F1, F2) -

          +

          + v.transform(F1, F2) +

          -

          - X::string_type -

          +

          + X::string_type +

          -

          - Returns a sort key for the character sequence designated by the - iterator range [F1, F2) such that if the character sequence [G1, - G2) sorts before the character sequence [H1, H2) then v.transform(G1, - G2) < v.transform(H1, H2). -

          +

          + Returns a sort key for the character sequence designated by the + iterator range [F1, F2) such that if the character sequence [G1, + G2) sorts before the character sequence [H1, H2) then v.transform(G1, + G2) < v.transform(H1, H2). +

          -

          - v.transform_primary(F1, F2) -

          +

          + v.transform_primary(F1, F2) +

          -

          - X::string_type -

          +

          + X::string_type +

          -

          - Returns a sort key for the character sequence designated by the - iterator range [F1, F2) such that if the character sequence [G1, - G2) sorts before the character sequence [H1, H2) when character - case is not considered then v.transform_primary(G1, G2) < v.transform_primary(H1, - H2). -

          +

          + Returns a sort key for the character sequence designated by the + iterator range [F1, F2) such that if the character sequence [G1, + G2) sorts before the character sequence [H1, H2) when character + case is not considered then v.transform_primary(G1, G2) < + v.transform_primary(H1, H2). +

          -

          - v.lookup_classname(F1, F2) -

          +

          + v.lookup_classname(F1, F2) +

          -

          - X::char_class_type -

          +

          + X::char_class_type +

          -

          - Converts the character sequence designated by the iterator range - [F1,F2) into a bitmask type that can subsequently be passed to - isctype. Values returned from lookup_classname can be safely bitwise - or'ed together. Returns 0 if the character sequence is not the - name of a character class recognized by X. The value returned shall - be independent of the case of the characters in the sequence. -

          +

          + Converts the character sequence designated by the iterator range + [F1,F2) into a bitmask type that can subsequently be passed to + isctype. Values returned from lookup_classname can be safely + bitwise or'ed together. Returns 0 if the character sequence is + not the name of a character class recognized by X. The value + returned shall be independent of the case of the characters in + the sequence. +

          -

          - v.lookup_collatename(F1, F2) -

          +

          + v.lookup_collatename(F1, F2) +

          -

          - X::string_type -

          +

          + X::string_type +

          -

          - Returns a sequence of characters that represents the collating - element consisting of the character sequence designated by the - iterator range [F1, F2). Returns an empty string if the character - sequence is not a valid collating element. -

          +

          + Returns a sequence of characters that represents the collating + element consisting of the character sequence designated by the + iterator range [F1, F2). Returns an empty string if the character + sequence is not a valid collating element. +

          -

          - v.isctype(c, v.lookup_classname (F1, F2)) -

          +

          + v.isctype(c, v.lookup_classname (F1, F2)) +

          -

          - bool -

          +

          + bool +

          -

          - Returns true if character c is a member of the character class - designated by the iterator range [F1, F2), false otherwise. -

          +

          + Returns true if character c is a member of the character class + designated by the iterator range [F1, F2), false otherwise. +

          -

          - v.value(c, I) -

          +

          + v.value(c, I) +

          -

          - int -

          +

          + int +

          -

          - Returns the value represented by the digit c in base I if the character - c is a valid digit in base I; otherwise returns -1. [Note: the - value of I will only be 8, 10, or 16. -end note] -

          +

          + Returns the value represented by the digit c in base I if the + character c is a valid digit in base I; otherwise returns -1. + [Note: the value of I will only be 8, 10, or 16. -end note] +

          -

          - u.imbue(loc) -

          +

          + u.imbue(loc) +

          -

          - X::locale_type -

          +

          + X::locale_type +

          -

          - Imbues u with the locale loc, returns the previous locale used - by u if any. -

          +

          + Imbues u with the locale loc, returns the previous locale used + by u if any. +

          -

          - v.getloc() -

          +

          + v.getloc() +

          -

          - X::locale_type -

          +

          + X::locale_type +

          -

          - Returns the current locale used by v if any. -

          +

          + Returns the current locale used by v if any. +

          - + Additional Optional Requirements
          @@ -401,177 +398,178 @@ -

          - Expression -

          +

          + Expression +

          -

          - Result -

          +

          + Result +

          -

          - Assertion / Note Pre / Post condition -

          +

          + Assertion / Note Pre / Post condition +

          -

          - X::boost_extensions_tag -

          +

          + X::boost_extensions_tag +

          -

          - An unspecified type. -

          +

          + An unspecified type. +

          -

          - When present, all of the extensions listed in this table must be - present. -

          +

          + When present, all of the extensions listed in this table must + be present. +

          -

          - v.syntax_type(c) -

          +

          + v.syntax_type(c) +

          -

          - regex_constants::syntax_type -

          +

          + regex_constants::syntax_type +

          -

          - Returns a symbolic value of type regex_constants::syntax_type that - signifies the meaning of character c within the regular expression - grammar. -

          +

          + Returns a symbolic value of type regex_constants::syntax_type + that signifies the meaning of character c within the regular + expression grammar. +

          -

          - v.escape_syntax_type(c) -

          +

          + v.escape_syntax_type(c) +

          -

          - regex_constants::escape_syntax_type -

          +

          + regex_constants::escape_syntax_type +

          -

          - Returns a symbolic value of type regex_constants::escape_syntax_type, - that signifies the meaning of character c within the regular expression - grammar, when c has been preceded by an escape character. Precondition: - if b is the character preceding c in the expression being parsed - then: v.syntax_type(b) - == syntax_escape -

          +

          + Returns a symbolic value of type regex_constants::escape_syntax_type, + that signifies the meaning of character c within the regular + expression grammar, when c has been preceded by an escape character. + Precondition: if b is the character preceding c in the expression + being parsed then: v.syntax_type(b) == + syntax_escape +

          -

          - v.translate(c, b) -

          +

          + v.translate(c, b) +

          -

          - X::char_type -

          +

          + X::char_type +

          -

          - Returns a character d such that: for any character d that is to - be considered equivalent to c then v.translate(c,false)==v.translate(d,false). Likewise for all characters C - that are to be considered equivalent to c when comparisons are - to be performed without regard to case, then v.translate(c,true)==v.translate(C,true). -

          +

          + Returns a character d such that: for any character d that is + to be considered equivalent to c then v.translate(c,false)==v.translate(d,false). Likewise for all characters + C that are to be considered equivalent to c when comparisons + are to be performed without regard to case, then v.translate(c,true)==v.translate(C,true). +

          -

          - v.toi(I1, I2, i) -

          +

          + v.toi(I1, I2, i) +

          -

          - An integer type capable of holding either a charT or an int. -

          +

          + An integer type capable of holding either a charT or an int. +

          -

          - Behaves as follows: if p - == q - or if *p - is not a digit character then returns -1. Otherwise performs formatted - numeric input on the sequence [p,q) and returns the result as an - int. Postcondition: either p == q or *p is a non-digit character. -

          +

          + Behaves as follows: if p + == q + or if *p + is not a digit character then returns -1. Otherwise performs + formatted numeric input on the sequence [p,q) and returns the + result as an int. Postcondition: either p == q or *p is a non-digit + character. +

          -

          - v.error_string(I) -

          +

          + v.error_string(I) +

          -

          - std::string -

          +

          + std::string +

          -

          - Returns a human readable error string for the error condition i, - where i is one of the values enumerated by type regex_constants::error_type. - If the value I is not recognized then returns - the string "Unknown error" or a localized equivalent. -

          +

          + Returns a human readable error string for the error condition + i, where i is one of the values enumerated by type regex_constants::error_type. + If the value I is not recognized then returns + the string "Unknown error" or a localized equivalent. +

          -

          - v.tolower(c) -

          +

          + v.tolower(c) +

          -

          - X::char_type -

          +

          + X::char_type +

          -

          - Converts c to lower case, used for Perl-style \l and \L formating - operations. -

          +

          + Converts c to lower case, used for Perl-style \l and \L formating + operations. +

          -

          - v.toupper(c) -

          +

          + v.toupper(c) +

          -

          - X::char_type -

          +

          + X::char_type +

          -

          - Converts c to upper case, used for Perl-style \u and \U formating - operations. -

          +

          + Converts c to upper case, used for Perl-style \u and \U formating + operations. +

          @@ -587,7 +585,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/deprecated_interfaces.html b/doc/html/boost_regex/ref/deprecated_interfaces.html index 187644c9..d26206d1 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces.html @@ -2,8 +2,8 @@ Deprecated Interfaces - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +
          @@ -47,7 +47,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html index 1526d35f..70168e0f 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html @@ -2,8 +2,8 @@ High Level Class RegEx (Deprecated) - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +

          High Level Class RegEx (Deprecated) @@ -120,695 +120,698 @@ -

          - Member -

          +

          + Member +

          -

          - Description -

          +

          + Description +

          -

          - RegEx(); -

          +

          + RegEx(); +

          -

          - Default constructor, constructs an instance of RegEx without any - valid expression. -

          +

          + Default constructor, constructs an instance of RegEx without + any valid expression. +

          -

          - RegEx(const RegEx& o); -

          +

          + RegEx(const RegEx& o); +

          -

          - Copy constructor, all the properties of parameter o - are copied. -

          +

          + Copy constructor, all the properties of parameter o + are copied. +

          -

          - RegEx(const char* c, bool - icase = - false); -

          +

          + RegEx(const char* c, bool + icase = + false); +

          -

          - Constructs an instance of RegEx, setting the expression to c, - if icase is true then matching is insensitive - to case, otherwise it is sensitive to case. Throws bad_expression on failure. -

          +

          + Constructs an instance of RegEx, setting the expression to c, + if icase is true then matching is insensitive + to case, otherwise it is sensitive to case. Throws bad_expression on failure. +

          -

          - RegEx(const std::string& s, bool - icase = - false); -

          +

          + RegEx(const std::string& s, bool + icase = + false); +

          -

          - Constructs an instance of RegEx, setting the expression to s, - if icase is true then matching is insensitive - to case, otherwise it is sensitive to case. Throws bad_expression on failure. -

          +

          + Constructs an instance of RegEx, setting the expression to s, + if icase is true then matching is insensitive + to case, otherwise it is sensitive to case. Throws bad_expression on failure. +

          -

          - RegEx& - operator=(const RegEx& o); -

          +

          + RegEx& + operator=(const RegEx& o); +

          -

          - Default assignment operator. -

          +

          + Default assignment operator. +

          -

          - RegEx& - operator=(const char* p); -

          +

          + RegEx& + operator=(const char* p); +

          -

          - Assignment operator, equivalent to calling SetExpression(p, false). Throws bad_expression on failure. -

          +

          + Assignment operator, equivalent to calling SetExpression(p, false). Throws bad_expression on failure. +

          -

          - RegEx& - operator=(const std::string& s); -

          +

          + RegEx& + operator=(const std::string& s); +

          -

          - Assignment operator, equivalent to calling SetExpression(s, false). Throws bad_expression on failure. -

          +

          + Assignment operator, equivalent to calling SetExpression(s, false). Throws bad_expression on failure. +

          -

          - unsigned int - SetExpression(constchar* - p, - bool icase - = false); -

          +

          + unsigned int + SetExpression(constchar* + p, + bool icase + = false); +

          -

          - Sets the current expression to p, if icase - is true then matching is insensitive to case, otherwise it is sensitive - to case. Throws bad_expression on failure. -

          +

          + Sets the current expression to p, if icase + is true then matching is insensitive to case, otherwise it is + sensitive to case. Throws bad_expression on failure. +

          -

          - unsigned int - SetExpression(const std::string& s, bool - icase = - false); -

          +

          + unsigned int + SetExpression(const std::string& s, bool + icase = + false); +

          -

          - Sets the current expression to s, if icase - is true then matching is insensitive to case, otherwise it is sensitive - to case. Throws bad_expression on failure. -

          +

          + Sets the current expression to s, if icase + is true then matching is insensitive to case, otherwise it is + sensitive to case. Throws bad_expression on failure. +

          -

          - std::string Expression()const; -

          +

          + std::string Expression()const; +

          -

          - Returns a copy of the current regular expression. -

          +

          + Returns a copy of the current regular expression. +

          -

          - bool Match(const - char* - p, - boost::match_flag_type flags - = match_default); -

          +

          + bool Match(const + char* + p, + boost::match_flag_type flags + = match_default); +

          -

          - Attempts to match the current expression against the text p - using the match flags flags - see match_flag_type. Returns - true if the expression matches the whole of - the input string. -

          +

          + Attempts to match the current expression against the text p + using the match flags flags - see match_flag_type. + Returns true if the expression matches the + whole of the input string. +

          -

          - bool Match(const - std::string& - s, - boost::match_flag_type flags - = match_default); -

          +

          + bool Match(const + std::string& + s, + boost::match_flag_type flags + = match_default); +

          -

          - Attempts to match the current expression against the text s - using the match_flag_type flags. - Returns true if the expression matches the - whole of the input string. -

          +

          + Attempts to match the current expression against the text s + using the match_flag_type flags. + Returns true if the expression matches the + whole of the input string. +

          -

          - bool Search(const - char* - p, - boost::match_flag_type flags - = match_default); -

          +

          + bool Search(const + char* + p, + boost::match_flag_type flags + = match_default); +

          -

          - Attempts to find a match for the current expression somewhere in - the text p using the match_flag_type flags. - Returns true if the match succeeds. -

          +

          + Attempts to find a match for the current expression somewhere + in the text p using the match_flag_type flags. + Returns true if the match succeeds. +

          -

          - bool Search(const - std::string& - s, - boost::match_flag_type flags - = match_default); -

          +

          + bool Search(const + std::string& + s, + boost::match_flag_type flags + = match_default); +

          -

          - Attempts to find a match for the current expression somewhere in - the text s using the match_flag_type flags. - Returns true if the match succeeds. -

          +

          + Attempts to find a match for the current expression somewhere + in the text s using the match_flag_type flags. + Returns true if the match succeeds. +

          -

          - unsigned int - Grep(GrepCallback cb, const - char* - p, - boost::match_flag_type flags - = match_default); -

          +

          + unsigned int + Grep(GrepCallback cb, const + char* + p, + boost::match_flag_type flags + = match_default); +

          -

          - Finds all matches of the current expression in the text p - using the match_flag_type flags. - For each match found calls the call-back function cb as: cb(*this); - If at any stage the call-back function returns false - then the grep operation terminates, otherwise continues until no - further matches are found. Returns the number of matches found. -

          +

          + Finds all matches of the current expression in the text p + using the match_flag_type flags. + For each match found calls the call-back function cb as: cb(*this); + If at any stage the call-back function returns false + then the grep operation terminates, otherwise continues until + no further matches are found. Returns the number of matches found. +

          -

          - unsigned int - Grep(GrepCallback cb, const - std::string& - s, - boost::match_flag_type flags - = match_default); -

          +

          + unsigned int + Grep(GrepCallback cb, const + std::string& + s, + boost::match_flag_type flags + = match_default); +

          -

          - Finds all matches of the current expression in the text s - using the match_flag_type flags. - For each match found calls the call-back function cb as: cb(*this); - If at any stage the call-back function returns false then the grep - operation terminates, otherwise continues until no further matches - are found. Returns the number of matches found. -

          +

          + Finds all matches of the current expression in the text s + using the match_flag_type flags. + For each match found calls the call-back function cb as: cb(*this); + If at any stage the call-back function returns false then the + grep operation terminates, otherwise continues until no further + matches are found. Returns the number of matches found. +

          -

          - unsigned int - Grep(std::vector<std::string>& - v, - const char* p, boost::match_flag_type - flags = - match_default); -

          +

          + unsigned int + Grep(std::vector<std::string>& + v, + const char* p, boost::match_flag_type + flags = + match_default); +

          -

          - Finds all matches of the current expression in the text p - using the match_flag_type flags. - For each match pushes a copy of what matched onto v. - Returns the number of matches found. -

          +

          + Finds all matches of the current expression in the text p + using the match_flag_type flags. + For each match pushes a copy of what matched onto v. + Returns the number of matches found. +

          -

          - unsigned int - Grep(std::vector<std::string>& - v, - const std::string& s, boost::match_flag_type - flags = - match_default); -

          +

          + unsigned int + Grep(std::vector<std::string>& + v, + const std::string& s, boost::match_flag_type + flags = + match_default); +

          -

          - Finds all matches of the current expression in the text s - using the match_flag_type flags. - For each match pushes a copy of what matched onto v. - Returns the number of matches found. -

          +

          + Finds all matches of the current expression in the text s + using the match_flag_type flags. + For each match pushes a copy of what matched onto v. + Returns the number of matches found. +

          -

          - unsigned int - Grep(std::vector<unsigned int>& v, const - char* - p, - boost::match_flag_type flags - = match_default); -

          +

          + unsigned int + Grep(std::vector<unsigned int>& v, const + char* + p, + boost::match_flag_type flags + = match_default); +

          -

          - Finds all matches of the current expression in the text p - using the match_flag_type flags. - For each match pushes the starting index of what matched onto - v. Returns the number of matches found. -

          +

          + Finds all matches of the current expression in the text p + using the match_flag_type flags. + For each match pushes the starting index of what matched onto + v. Returns the number of matches found. +

          -

          - unsigned int - Grep(std::vector<unsigned int>& v, const - std::string& - s, - boost::match_flag_type flags - = match_default); -

          +

          + unsigned int + Grep(std::vector<unsigned int>& v, const + std::string& + s, + boost::match_flag_type flags + = match_default); +

          -

          - Finds all matches of the current expression in the text s - using the match_flag_type flags. - For each match pushes the starting index of what matched onto - v. Returns the number of matches found. -

          +

          + Finds all matches of the current expression in the text s + using the match_flag_type flags. + For each match pushes the starting index of what matched onto + v. Returns the number of matches found. +

          -

          - unsigned int - GrepFiles(GrepFileCallback cb, const - char* - files, - bool recurse - = false, boost::match_flag_type - flags = - match_default); -

          +

          + unsigned int + GrepFiles(GrepFileCallback cb, const + char* + files, + bool recurse + = false, boost::match_flag_type + flags = + match_default); +

          -

          - Finds all matches of the current expression in the files files - using the match_flag_type flags. - For each match calls the call-back function cb. If the call-back - returns false then the algorithm returns without considering further - matches in the current file, or any further files. -

          -

          - The parameter files can include wild card - characters '*' and '?', if the parameter recurse is true then searches - sub-directories for matching file names. -

          -

          - Returns the total number of matches found. -

          -

          - May throw an exception derived from std::runtime_error - if file io fails. -

          +

          + Finds all matches of the current expression in the files files + using the match_flag_type flags. + For each match calls the call-back function cb. If the call-back + returns false then the algorithm returns without considering + further matches in the current file, or any further files. +

          +

          + The parameter files can include wild card + characters '*' and '?', if the parameter recurse is true then + searches sub-directories for matching file names. +

          +

          + Returns the total number of matches found. +

          +

          + May throw an exception derived from std::runtime_error + if file io fails. +

          -

          - unsigned int - GrepFiles(GrepFileCallback cb, const - std::string& - files, - bool recurse - = false, boost::match_flag_type - flags = - match_default); -

          +

          + unsigned int + GrepFiles(GrepFileCallback cb, const + std::string& + files, + bool recurse + = false, boost::match_flag_type + flags = + match_default); +

          -

          - Finds all matches of the current expression in the files files - using the match_flag_type flags. - For each match calls the call-back function cb. -

          -

          - If the call-back returns false then the algorithm returns without - considering further matches in the current file, or any further - files. -

          -

          - The parameter files can include wild card - characters '*' and '?', if the parameter recurse is true then searches - sub-directories for matching file names. -

          -

          - Returns the total number of matches found. -

          -

          - May throw an exception derived from std::runtime_error - if file io fails. -

          +

          + Finds all matches of the current expression in the files files + using the match_flag_type flags. + For each match calls the call-back function cb. +

          +

          + If the call-back returns false then the algorithm returns without + considering further matches in the current file, or any further + files. +

          +

          + The parameter files can include wild card + characters '*' and '?', if the parameter recurse is true then + searches sub-directories for matching file names. +

          +

          + Returns the total number of matches found. +

          +

          + May throw an exception derived from std::runtime_error + if file io fails. +

          -

          - unsigned int - FindFiles(FindFilesCallback cb, const - char* - files, - bool recurse - = false, boost::match_flag_type - flags = - match_default); -

          +

          + unsigned int + FindFiles(FindFilesCallback cb, const + char* + files, + bool recurse + = false, boost::match_flag_type + flags = + match_default); +

          -

          - Searches files to find all those which contain at least one match - of the current expression using the match_flag_type flags. - For each matching file calls the call-back function cb. If the - call-back returns false then the algorithm returns without considering - any further files. -

          -

          - The parameter files can include wild card - characters '*' and '?', if the parameter recurse - is true then searches sub-directories for matching file names. -

          -

          - Returns the total number of files found. -

          -

          - May throw an exception derived from std::runtime_error - if file io fails. -

          +

          + Searches files to find all those which contain at least one match + of the current expression using the match_flag_type flags. + For each matching file calls the call-back function cb. If the + call-back returns false then the algorithm returns without considering + any further files. +

          +

          + The parameter files can include wild card + characters '*' and '?', if the parameter recurse + is true then searches sub-directories for matching file names. +

          +

          + Returns the total number of files found. +

          +

          + May throw an exception derived from std::runtime_error + if file io fails. +

          -

          - unsigned int - FindFiles(FindFilesCallback cb, const - std::string& - files, - bool recurse - = false, boost::match_flag_type - flags = - match_default); -

          +

          + unsigned int + FindFiles(FindFilesCallback cb, const + std::string& + files, + bool recurse + = false, boost::match_flag_type + flags = + match_default); +

          -

          - Searches files to find all those which contain at least one match - of the current expression using the match_flag_type flags. - For each matching file calls the call-back function cb. -

          -

          - If the call-back returns false then the algorithm returns without - considering any further files. -

          -

          - The parameter files can include wild card - characters '*' and '?', if the parameter recurse - is true then searches sub-directories for matching file names. -

          -

          - Returns the total number of files found. -

          -

          - May throw an exception derived from std::runtime_error - if file io fails. -

          +

          + Searches files to find all those which contain at least one match + of the current expression using the match_flag_type flags. + For each matching file calls the call-back function cb. +

          +

          + If the call-back returns false then the algorithm returns without + considering any further files. +

          +

          + The parameter files can include wild card + characters '*' and '?', if the parameter recurse + is true then searches sub-directories for matching file names. +

          +

          + Returns the total number of files found. +

          +

          + May throw an exception derived from std::runtime_error + if file io fails. +

          -

          - std::string Merge(const - std::string& - in, - const std::string& fmt, bool - copy = - true, - boost::match_flag_type flags - = match_default); -

          +

          + std::string Merge(const + std::string& + in, + const std::string& fmt, bool + copy = + true, + boost::match_flag_type flags + = match_default); +

          -

          - Performs a search and replace operation: searches through the string - in for all occurrences of the current expression, - for each occurrence replaces the match with the format string - fmt. Uses flags to determine - what gets matched, and how the format string should be treated. - If copy is true then all unmatched sections - of input are copied unchanged to output, if the flag format_first_only - is set then only the first occurance of the pattern found is replaced. - Returns the new string. See also format - string syntax, and match_flag_type. -

          +

          + Performs a search and replace operation: searches through the + string in for all occurrences of the current + expression, for each occurrence replaces the match with the format + string fmt. Uses flags + to determine what gets matched, and how the format string should + be treated. If copy is true then all unmatched + sections of input are copied unchanged to output, if the flag + format_first_only is set then only the first + occurance of the pattern found is replaced. Returns the new string. + See also format string syntax, + and match_flag_type. +

          -

          - std::string Merge(const - char* - in, - const char* fmt, bool - copy = - true, - boost::match_flag_type flags - = match_default); -

          +

          + std::string Merge(const + char* + in, + const char* fmt, bool + copy = + true, + boost::match_flag_type flags + = match_default); +

          -

          - Performs a search and replace operation: searches through the string - in for all occurrences of the current expression, - for each occurrence replaces the match with the format string - fmt. Uses flags to determine - what gets matched, and how the format string should be treated. - If copy is true then all unmatched sections - of input are copied unchanged to output, if the flag format_first_only - is set then only the first occurance of the pattern found is replaced. - Returns the new string. See also format - string syntax, and match_flag_type. -

          +

          + Performs a search and replace operation: searches through the + string in for all occurrences of the current + expression, for each occurrence replaces the match with the format + string fmt. Uses flags + to determine what gets matched, and how the format string should + be treated. If copy is true then all unmatched + sections of input are copied unchanged to output, if the flag + format_first_only is set then only the first + occurance of the pattern found is replaced. Returns the new string. + See also format string syntax, + and match_flag_type. +

          -

          - unsigned Split(std::vector<std::string>& v, std::string& s, boost::match_flag_type - flags = - match_default, - unsigned max_count - = ~0); -

          +

          + unsigned Split(std::vector<std::string>& v, std::string& s, boost::match_flag_type + flags = + match_default, + unsigned max_count + = ~0); +

          -

          - Splits the input string and pushes each one onto the vector. If - the expression contains no marked sub-expressions, then one string - is outputted for each section of the input that does not match - the expression. If the expression does contain marked sub-expressions, - then outputs one string for each marked sub-expression each time - a match occurs. Outputs no more than max_count - strings. Before returning, deletes from the input string s - all of the input that has been processed (all of the string if - max_count was not reached). Returns the number - of strings pushed onto the vector. -

          +

          + Splits the input string and pushes each one onto the vector. + If the expression contains no marked sub-expressions, then one + string is outputted for each section of the input that does not + match the expression. If the expression does contain marked sub-expressions, + then outputs one string for each marked sub-expression each time + a match occurs. Outputs no more than max_count + strings. Before returning, deletes from the input string s + all of the input that has been processed (all of the string if + max_count was not reached). Returns the + number of strings pushed onto the vector. +

          -

          - unsigned int - Position(int i - = 0)const; -

          +

          + unsigned int + Position(int i + = 0)const; +

          -

          - Returns the position of what matched sub-expression i. - If i = - 0 then returns the position - of the whole match. Returns RegEx::npos - if the supplied index is invalid, or if the specified sub-expression - did not participate in the match. -

          +

          + Returns the position of what matched sub-expression i. + If i = + 0 then returns the position + of the whole match. Returns RegEx::npos + if the supplied index is invalid, or if the specified sub-expression + did not participate in the match. +

          -

          - unsigned int - Length(int i - = 0)const; -

          +

          + unsigned int + Length(int i + = 0)const; +

          -

          - Returns the length of what matched sub-expression i. If i = - 0 then returns the length - of the whole match. Returns RegEx::npos - if the supplied index is invalid, or if the specified sub-expression - did not participate in the match. -

          +

          + Returns the length of what matched sub-expression i. If i = + 0 then returns the length + of the whole match. Returns RegEx::npos + if the supplied index is invalid, or if the specified sub-expression + did not participate in the match. +

          -

          - bool Matched(int i = - 0)const; -

          +

          + bool Matched(int + i = + 0)const; +

          -

          - Returns true if sub-expression i was matched, - false otherwise. -

          +

          + Returns true if sub-expression i was matched, + false otherwise. +

          -

          - unsigned int - Line()const; -

          +

          + unsigned int + Line()const; +

          -

          - Returns the line on which the match occurred, indexes start from - 1 not zero, if no match occurred then returns RegEx::npos. -

          +

          + Returns the line on which the match occurred, indexes start from + 1 not zero, if no match occurred then returns RegEx::npos. +

          -

          - unsigned int - Marks() - const; -

          +

          + unsigned int + Marks() + const; +

          -

          - Returns the number of marked sub-expressions contained in the expression. - Note that this includes the whole match (sub-expression zero), - so the value returned is always >= 1. -

          +

          + Returns the number of marked sub-expressions contained in the + expression. Note that this includes the whole match (sub-expression + zero), so the value returned is always >= 1. +

          -

          - std::string What(int i)const; -

          +

          + std::string What(int + i)const; +

          -

          - Returns a copy of what matched sub-expression i. - If i = - 0 then returns a copy of - the whole match. Returns a null string if the index is invalid - or if the specified sub-expression did not participate in a match. -

          +

          + Returns a copy of what matched sub-expression i. + If i = + 0 then returns a copy of + the whole match. Returns a null string if the index is invalid + or if the specified sub-expression did not participate in a match. +

          -

          - std::string operator[](int - i)const ; -

          +

          + std::string operator[](int + i)const ; +

          -

          - Returns what(i); - Can be used to simplify access to sub-expression matches, and make - usage more perl-like. -

          +

          + Returns what(i); Can be used to simplify access + to sub-expression matches, and make usage more perl-like. +

          @@ -824,7 +827,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index 7769e42c..bb215498 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -2,8 +2,8 @@ regex_format (Deprecated) - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +

          regex_format (Deprecated) @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

          - + Algorithm regex_format
          @@ -58,7 +58,7 @@

          - + @@ -165,7 +167,7 @@
          [Note][Note] Note

          @@ -82,67 +82,69 @@

          -

          - Parameter -

          +

          + Parameter +

          -

          - Description -

          +

          + Description +

          -

          - OutputIterator out -

          +

          + OutputIterator out +

          -

          - An output iterator type, the output string is sent to this iterator. - Typically this would be a std::ostream_iterator. -

          +

          + An output iterator type, the output string is sent to this iterator. + Typically this would be a std::ostream_iterator. +

          -

          - const match_results<iterator, Allocator>& m -

          +

          + const match_results<iterator, Allocator>& m +

          -

          - An instance of match_results obtained - from one of the matching algorithms above, and denoting what matched. -

          +

          + An instance of match_results obtained + from one of the matching algorithms above, and denoting what + matched. +

          -

          - Formatter fmt -

          +

          + Formatter fmt +

          -

          - Either a format string that determines how the match is transformed - into the new string, or a functor that computes the new string - from m - see match_results<>::format. -

          +

          + Either a format string that determines how the match is transformed + into the new string, or a functor that computes the new string + from m - see match_results<>::format. +

          -

          - unsigned flags -

          +

          + unsigned flags +

          -

          - Optional flags which describe how the format string is to be interpreted. -

          +

          + Optional flags which describe how the format string is to be + interpreted. +


          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html index a2fd8e50..3a86678b 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html @@ -2,8 +2,8 @@ regex_grep (Deprecated) - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +

          regex_grep (Deprecated) @@ -370,7 +370,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html index d4299f77..11bb517d 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html @@ -2,8 +2,8 @@ regex_split (deprecated) - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +

          regex_split (deprecated) @@ -157,7 +157,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index c2f2bc40..432d5fc1 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -2,8 +2,8 @@ error_type - - + + @@ -20,14 +20,14 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +
          - + Synopsis

          @@ -57,7 +57,7 @@ } // namespace boost

          - + Description

          @@ -72,184 +72,184 @@ -

          - Constant -

          +

          + Constant +

          -

          - Meaning -

          +

          + Meaning +

          -

          - error_collate -

          +

          + error_collate +

          -

          - An invalid collating element was specified in a [[.name.]] block. -

          +

          + An invalid collating element was specified in a [[.name.]] block. +

          -

          - error_ctype -

          +

          + error_ctype +

          -

          - An invalid character class name was specified in a [[:name:]] block. -

          +

          + An invalid character class name was specified in a [[:name:]] block. +

          -

          - error_escape -

          +

          + error_escape +

          -

          - An invalid or trailing escape was encountered. -

          +

          + An invalid or trailing escape was encountered. +

          -

          - error_backref -

          +

          + error_backref +

          -

          - A back-reference to a non-existant marked sub-expression was encountered. -

          +

          + A back-reference to a non-existant marked sub-expression was encountered. +

          -

          - error_brack -

          +

          + error_brack +

          -

          - An invalid character set [...] was encountered. -

          +

          + An invalid character set [...] was encountered. +

          -

          - error_paren -

          +

          + error_paren +

          -

          - Mismatched '(' and ')'. -

          +

          + Mismatched '(' and ')'. +

          -

          - error_brace -

          +

          + error_brace +

          -

          - Mismatched '{' and '}'. -

          +

          + Mismatched '{' and '}'. +

          -

          - error_badbrace -

          +

          + error_badbrace +

          -

          - Invalid contents of a {...} block. -

          +

          + Invalid contents of a {...} block. +

          -

          - error_range -

          +

          + error_range +

          -

          - A character range was invalid, for example [d-a]. -

          +

          + A character range was invalid, for example [d-a]. +

          -

          - error_space -

          +

          + error_space +

          -

          - Out of memory. -

          +

          + Out of memory. +

          -

          - error_badrepeat -

          +

          + error_badrepeat +

          -

          - An attempt to repeat something that can not be repeated - for example - a*+ -

          +

          + An attempt to repeat something that can not be repeated - for example + a*+ +

          -

          - error_complexity -

          +

          + error_complexity +

          -

          - The expression became too complex to handle. -

          +

          + The expression became too complex to handle. +

          -

          - error_stack -

          +

          + error_stack +

          -

          - Out of program stack space. -

          +

          + Out of program stack space. +

          -

          - error_bad_pattern -

          +

          + error_bad_pattern +

          -

          - Other unspecified errors. -

          +

          + Other unspecified errors. +

          @@ -265,7 +265,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index afceff37..cf403998 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -2,8 +2,8 @@ match_flag_type - - + + @@ -20,9 +20,9 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +
          @@ -69,7 +69,7 @@ } // namespace boost
          - + Description

          @@ -85,392 +85,397 @@ -

          - Element -

          +

          + Element +

          -

          - Effect if set -

          +

          + Effect if set +

          -

          - match_default -

          +

          + match_default +

          -

          - Specifies that matching of regular expressions proceeds without any - modification of the normal rules used in ECMA-262, ECMAScript Language - Specification, Chapter 15 part 10, RegExp (Regular Expression) Objects - (FWD.1) -

          +

          + Specifies that matching of regular expressions proceeds without + any modification of the normal rules used in ECMA-262, ECMAScript + Language Specification, Chapter 15 part 10, RegExp (Regular Expression) + Objects (FWD.1) +

          -

          - match_not_bob -

          +

          + match_not_bob +

          -

          - Specifies that the expressions "\A" and "\`" - should not match against the sub-sequence [first,first). -

          +

          + Specifies that the expressions "\A" and "\`" + should not match against the sub-sequence [first,first). +

          -

          - match_not_eob -

          +

          + match_not_eob +

          -

          - Specifies that the expressions "\'", "\z" and - "\Z" should not match against the sub-sequence [last,last). -

          +

          + Specifies that the expressions "\'", "\z" and + "\Z" should not match against the sub-sequence [last,last). +

          -

          - match_not_bol -

          +

          + match_not_bol +

          -

          - Specifies that the expression "^" should not be matched - against the sub-sequence [first,first). -

          +

          + Specifies that the expression "^" should not be matched + against the sub-sequence [first,first). +

          -

          - match_not_eol -

          +

          + match_not_eol +

          -

          - Specifies that the expression "$" should not be matched - against the sub-sequence [last,last). -

          +

          + Specifies that the expression "$" should not be matched + against the sub-sequence [last,last). +

          -

          - match_not_bow -

          +

          + match_not_bow +

          -

          - Specifies that the expressions "\<" and "\b" - should not be matched against the sub-sequence [first,first). -

          +

          + Specifies that the expressions "\<" and "\b" + should not be matched against the sub-sequence [first,first). +

          -

          - match_not_eow -

          +

          + match_not_eow +

          -

          - Specifies that the expressions "\>" and "\b" - should not be matched against the sub-sequence [last,last). -

          +

          + Specifies that the expressions "\>" and "\b" + should not be matched against the sub-sequence [last,last). +

          -

          - match_any -

          +

          + match_any +

          -

          - Specifies that if more than one match is possible then any match - is an acceptable result: this will still find the leftmost match, - but may not find the "best" match at that position. Use - this flag if you care about the speed of matching, but don't care - what was matched (only whether there is one or not). -

          +

          + Specifies that if more than one match is possible then any match + is an acceptable result: this will still find the leftmost match, + but may not find the "best" match at that position. Use + this flag if you care about the speed of matching, but don't care + what was matched (only whether there is one or not). +

          -

          - match_not_null -

          +

          + match_not_null +

          -

          - Specifies that the expression can not be matched against an empty - sequence. -

          +

          + Specifies that the expression can not be matched against an empty + sequence. +

          -

          - match_continuous -

          +

          + match_continuous +

          -

          - Specifies that the expression must match a sub-sequence that begins - at first. -

          +

          + Specifies that the expression must match a sub-sequence that begins + at first. +

          -

          - match_partial -

          +

          + match_partial +

          -

          - Specifies that if no match can be found, then it is acceptable to - return a match [from, last) such that from!= last, if there could - exist some longer sequence of characters [from,to) of which [from,last) - is a prefix, and which would result in a full match. This flag is - used when matching incomplete or very long texts, see the partial - matches documentation for more information. -

          +

          + Specifies that if no match can be found, then it is acceptable + to return a match [from, last) such that from!= last, if there + could exist some longer sequence of characters [from,to) of which + [from,last) is a prefix, and which would result in a full match. + This flag is used when matching incomplete or very long texts, + see the partial matches documentation for more information. +

          -

          - match_extra -

          +

          + match_extra +

          -

          - Instructs the matching engine to retain all available capture information; - if a capturing group is repeated then information about every repeat - is available via match_results::captures() or sub_match_captures(). -

          +

          + Instructs the matching engine to retain all available capture information; + if a capturing group is repeated then information about every repeat + is available via match_results::captures() or sub_match_captures(). +

          -

          - match_single_line -

          +

          + match_single_line +

          -

          - Equivalent to the inverse of Perl's m/ modifier; prevents ^ from - matching after an embedded newline character (so that it only matches - at the start of the text being matched), and $ from matching before - an embedded newline (so that it only matches at the end of the text - being matched). -

          +

          + Equivalent to the inverse of Perl's m/ modifier; prevents ^ from + matching after an embedded newline character (so that it only matches + at the start of the text being matched), and $ from matching before + an embedded newline (so that it only matches at the end of the + text being matched). +

          -

          - match_prev_avail -

          +

          + match_prev_avail +

          -

          - Specifies that --first is a valid iterator position, when this flag - is set then the flags match_not_bol and match_not_bow are ignored - by the regular expression algorithms (RE.7) and iterators (RE.8). -

          +

          + Specifies that --first is a valid iterator position, when this + flag is set then the flags match_not_bol and match_not_bow are + ignored by the regular expression algorithms (RE.7) and iterators + (RE.8). +

          -

          - match_not_dot_newline -

          +

          + match_not_dot_newline +

          -

          - Specifies that the expression "." does not match a newline - character. This is the inverse of Perl's s/ modifier. -

          +

          + Specifies that the expression "." does not match a newline + character. This is the inverse of Perl's s/ modifier. +

          -

          - match_not_dot_null -

          +

          + match_not_dot_null +

          -

          - Specifies that the expression "." does not match a character - null '\0'. -

          +

          + Specifies that the expression "." does not match a character + null '\0'. +

          -

          - match_posix -

          +

          + match_posix +

          -

          - Specifies that the expression should be matched according to the - POSIX leftmost-longest - rule, regardless of what kind of expression was compiled. - Be warned that these rules do not work well with many Perl-specific - features such as non-greedy repeats. -

          +

          + Specifies that the expression should be matched according to the + POSIX leftmost-longest + rule, regardless of what kind of expression was compiled. + Be warned that these rules do not work well with many Perl-specific + features such as non-greedy repeats. +

          -

          - match_perl -

          +

          + match_perl +

          -

          - Specifies that the expression should be matched according to the - Perl - matching rules, irrespective of what kind of expression was - compiled. -

          +

          + Specifies that the expression should be matched according to the + Perl + matching rules, irrespective of what kind of expression + was compiled. +

          -

          - match_nosubs -

          +

          + match_nosubs +

          -

          - Makes the expression behave as if it had no marked subexpressions, - no matter how many capturing groups are actually present. The match_results - class will only contain information about the overall match, and - not any sub-expressions. -

          +

          + Makes the expression behave as if it had no marked subexpressions, + no matter how many capturing groups are actually present. The + match_results + class will only contain information about the overall match, and + not any sub-expressions. +

          -

          - format_default -

          +

          + format_default +

          -

          - Specifies that when a regular expression match is to be replaced - by a new string, that the new string is constructed using the rules - used by the ECMAScript replace function in ECMA-262, ECMAScript Language - Specification, Chapter 15 part 5.4.11 String.prototype.replace. (FWD.1). -

          -

          - This is functionally identical to the Perl - format string rules. -

          -

          - In addition during search and replace operations then all non-overlapping - occurrences of the regular expression are located and replaced, and - sections of the input that did not match the expression, are copied - unchanged to the output string. -

          +

          + Specifies that when a regular expression match is to be replaced + by a new string, that the new string is constructed using the rules + used by the ECMAScript replace function in ECMA-262, ECMAScript + Language Specification, Chapter 15 part 5.4.11 String.prototype.replace. + (FWD.1). +

          +

          + This is functionally identical to the Perl + format string rules. +

          +

          + In addition during search and replace operations then all non-overlapping + occurrences of the regular expression are located and replaced, + and sections of the input that did not match the expression, are + copied unchanged to the output string. +

          -

          - format_sed -

          +

          + format_sed +

          -

          - Specifies that when a regular expression match is to be replaced - by a new string, that the new string is constructed using the rules - used by the Unix sed utility in IEEE Std 1003.1-2001, Portable Operating - SystemInterface (POSIX ), Shells and Utilities. See also the Sed Format string reference. -

          +

          + Specifies that when a regular expression match is to be replaced + by a new string, that the new string is constructed using the rules + used by the Unix sed utility in IEEE Std 1003.1-2001, Portable + Operating SystemInterface (POSIX ), Shells and Utilities. See also + the Sed Format string + reference. +

          -

          - format_perl -

          +

          + format_perl +

          -

          - Specifies that when a regular expression match is to be replaced - by a new string, that the new string is constructed using the - same rules as Perl 5. -

          +

          + Specifies that when a regular expression match is to be replaced + by a new string, that the new string is constructed using the same rules as Perl + 5. +

          -

          - format_literal -

          +

          + format_literal +

          -

          - Specifies that when a regular expression match is to be replaced - by a new string, that the new string is a literal copy of the replacement - text. -

          +

          + Specifies that when a regular expression match is to be replaced + by a new string, that the new string is a literal copy of the replacement + text. +

          -

          - format_all -

          +

          + format_all +

          -

          - Specifies that all syntax extensions are enabled, including conditional - (?ddexpression1:expression2) replacements: see the format - string guide for more details. -

          +

          + Specifies that all syntax extensions are enabled, including conditional + (?ddexpression1:expression2) replacements: see the format + string guide for more details. +

          -

          - format_no_copy -

          +

          + format_no_copy +

          -

          - When specified during a search and replace operation, then sections - of the character container sequence being searched that do match - the regular expression, are not copied to the output string. -

          +

          + When specified during a search and replace operation, then sections + of the character container sequence being searched that do match + the regular expression, are not copied to the output string. +

          -

          - format_first_only -

          +

          + format_first_only +

          -

          - When specified during a search and replace operation, then only the - first occurrence of the regular expression is replaced. -

          +

          + When specified during a search and replace operation, then only + the first occurrence of the regular expression is replaced. +

          @@ -486,7 +491,7 @@
          -PrevUpHomeNext +PrevUpHomeNext
          diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index b547b6f6..b4982000 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -2,8 +2,8 @@ match_results - - + + @@ -20,14 +20,14 @@
          -PrevUpHomeNext +PrevUpHomeNext
          -
          +
          - + Synopsis
          #include <boost/regex.hpp>
          @@ -167,7 +167,7 @@
                    match_results<BidirectionalIterator, Allocator>& m2);
           
          - + Description

          @@ -175,9 +175,7 @@ a copy of the Allocator argument is used for any memory allocation performed by the constructor or member functions during the lifetime of the object.

          -

          -

          -
          match_results(const Allocator& a = Allocator());
          +
          match_results(const Allocator& a = Allocator());
           

          Effects: Constructs an object of class @@ -191,66 +189,62 @@ -

          - Element -

          +

          + Element +

          -

          - Value -

          +

          + Value +

          -

          - empty() -

          +

          + empty() +

          -

          - true -

          +

          + true +

          -

          - size() -

          +

          + size() +

          -

          - 0 -

          +

          + 0 +

          -

          - str() -

          +

          + str() +

          -

          - basic_string<charT>() -

          +

          + basic_string<charT>() +

          -

          -

          -
          match_results(const match_results& m);
          +
          match_results(const match_results& m);
           

          Effects: Constructs an object of class match_results, as a copy of m.

          -

          -

          -
          match_results& operator=(const match_results& m);
          +
          match_results& operator=(const match_results& m);
           

          Effects: Assigns m to *this. The postconditions @@ -263,143 +257,135 @@ -

          - Element -

          +

          + Element +

          -

          - Value -

          +

          + Value +

          -

          - empty() -

          +

          + empty() +

          -

          - m.empty(). -

          +

          + m.empty(). +

          -

          - size() -

          +

          + size() +

          -

          - m.size(). -

          +

          + m.size(). +

          -

          - str(n) -

          +

          + str(n) +

          -

          - m.str(n) for all integers n < m.size(). -

          +

          + m.str(n) for all integers n < m.size(). +

          -

          - prefix() -

          +

          + prefix() +

          -

          - m.prefix(). -

          +

          + m.prefix(). +

          -

          - suffix() -

          +

          + suffix() +

          -

          - m.suffix(). -

          +

          + m.suffix(). +

          -

          - (*this)[n] -

          +

          + (*this)[n] +

          -

          - m[n] for all integers n < m.size(). -

          +

          + m[n] for all integers n < m.size(). +

          -

          - length(n) -

          +

          + length(n) +

          -

          - m.length(n) for all integers n < m.size(). -

          +

          + m.length(n) for all integers n < m.size(). +

          -

          - position(n) -

          +

          + position(n) +

          -

          - m.position(n) for all integers n < m.size(). -

          +

          + m.position(n) for all integers n < m.size(). +

          -

          -

          -
          size_type size()const;
          +
          size_type size()const;
           

          Effects: Returns the number of sub_match elements stored in *this; that is the number of marked sub-expressions in the regular expression that was matched plus one.

          -

          -

          -
          size_type max_size()const;
          +
          size_type max_size()const;
           

          Effects: Returns the maximum number of sub_match elements that can be stored in *this.

          -

          -

          -
          bool empty()const;
          +
          bool empty()const;
           

          Effects: Returns size() == 0.

          -

          -

          -
          difference_type length(int sub = 0)const;
          +
          difference_type length(int sub = 0)const;
           difference_type length(const char_type* sub)const;
           template <class charT>
           difference_type length(const charT* sub)const;
          @@ -432,9 +418,7 @@
                   as an argument, even when the underlying character type of the expression
                   being matched may be something more exotic such as a Unicode character type.
                 

          -

          -

          -
          difference_type position(unsigned int sub = 0)const;
          +
          difference_type position(unsigned int sub = 0)const;
           difference_type position(const char_type* sub)const;
           template <class charT>
           difference_type position(const charT* sub)const;
          @@ -470,9 +454,7 @@
                   as an argument, even when the underlying character type of the expression
                   being matched may be something more exotic such as a Unicode character type.
                 

          -

          -

          -
          string_type str(int sub = 0)const;
          +
          string_type str(int sub = 0)const;
           string_type str(const char_type* sub)const;
           template <class Traits, class A>
           string_type str(const std::basic_string<char_type, Traits, A>& sub)const;
          @@ -508,9 +490,7 @@
                   as an argument, even when the underlying character type of the expression
                   being matched may be something more exotic such as a Unicode character type.
                 

          -

          -

          -
          const_reference operator[](int n) const;
          +
          const_reference operator[](int n) const;
           const_reference operator[](const char_type* n) const;
           template <class Traits, class A>
           const_reference operator[](const std::basic_string<char_type, Traits, A>& n) const;
          @@ -553,9 +533,7 @@
                   as an argument, even when the underlying character type of the expression
                   being matched may be something more exotic such as a Unicode character type.
                 

          -

          -

          -
          const_reference prefix()const;
          +
          const_reference prefix()const;
           

          Requires: that the match_results object @@ -570,9 +548,7 @@ object representing the character sequence from the start of the string being matched or searched, to the start of the match found.

          -

          -

          -
          const_reference suffix()const;
          +
          const_reference suffix()const;
           

          Requires: that the match_results object @@ -587,25 +563,19 @@ object representing the character sequence from the end of the match found to the end of the string being matched or searched.

          -

          -

          -
          const_iterator begin()const;
          +
          const_iterator begin()const;
           

          Effects: Returns a starting iterator that enumerates over all the marked sub-expression matches stored in *this.

          -

          -

          -
          const_iterator end()const;
          +
          const_iterator end()const;
           

          Effects: Returns a terminating iterator that enumerates over all the marked sub-expression matches stored in *this.

          -

          -

          -
          template <class OutputIterator, class Formatter>
          +
          template <class OutputIterator, class Formatter>
           OutputIterator format(OutputIterator out,
                                 Formatter fmt,
                                 match_flag_type flags = format_default);
          @@ -655,17 +625,18 @@
                   then depending on the number of arguments the function object accepts, it
                   will either:
                 

          -
            -
          • - Call fmt(*this) and - copy the string returned to OutputIteratorout. -
          • -
          • - Call fmt(*this, out). -
          • -
          • - Call fmt(*this, out, flags). -
          • +
              +
            • + Call fmt(*this) + and copy the string returned to OutputIterator + out. +
            • +
            • + Call fmt(*this, out). +
            • +
            • + Call fmt(*this, out, flags). +

            In all cases the new position of the OutputIterator @@ -677,9 +648,7 @@

            Returns: out.

            -

            -

            -
            template <class Formatter>
            +
            template <class Formatter>
             string_type format(Formatter fmt,
                                match_flag_type flags = format_default);
             
            @@ -722,36 +691,33 @@ then depending on the number of arguments the function object accepts, it will either:

            -
              -
            • - Call fmt(*this) and - return the result. -
            • -
            • - Call fmt(*this, unspecified-output-iterator), where unspecified-output-iterator - is an unspecified OutputIterator type used to copy the output to the string - result. -
            • -
            • - Call fmt(*this, unspecified-output-iterator, flags), where unspecified-output-iterator - is an unspecified OutputIterator type used to copy the output to the string - result. -
            • +
                +
              • + Call fmt(*this) + and return the result. +
              • +
              • + Call fmt(*this, unspecified-output-iterator), + where unspecified-output-iterator is an unspecified OutputIterator + type used to copy the output to the string result. +
              • +
              • + Call fmt(*this, unspecified-output-iterator, + flags), + where unspecified-output-iterator is an unspecified OutputIterator + type used to copy the output to the string result. +

              See the format syntax guide for more information.

              -

              -

              -
              allocator_type get_allocator()const;
              +
              allocator_type get_allocator()const;
               

              Effects: Returns a copy of the Allocator that was passed to the object's constructor.

              -

              -

              -
              void swap(match_results& that);
              +
              void swap(match_results& that);
               

              Effects: Swaps the contents of the two sequences. @@ -764,9 +730,7 @@

              Complexity: constant time.

              -

              -

              -
              typedef typename value_type::capture_sequence_type capture_sequence_type;
              +
              typedef typename value_type::capture_sequence_type capture_sequence_type;
               

              Defines an implementation-specific type that satisfies the requirements of @@ -774,9 +738,7 @@ whose value_type is a sub_match<BidirectionalIterator>. This type happens to be std::vector<sub_match<BidirectionalIterator> >, but you shouldn't actually rely on that.

              -

              -

              -
              const capture_sequence_type& captures(std::size_t i)const; 
              +
              const capture_sequence_type& captures(std::size_t i)const; 
               

              Requires: that the match_results object @@ -803,24 +765,23 @@ Rationale: Enabling this feature has several consequences:

              -
                -
              • - sub_match occupies more memory resulting in complex expressions running - out of memory or stack space more quickly during matching. -
              • -
              • - The matching algorithms are less efficient at handling some features (independent - sub-expressions for example), even when match_extra is not used. -
              • -
              • - The matching algorithms are much less efficient (i.e. slower), when match_extra - is used. Mostly this is down to the extra memory allocations that have - to take place. -
              • +
                  +
                • + sub_match occupies more memory resulting in complex expressions running + out of memory or stack space more quickly during matching. +
                • +
                • + The matching algorithms are less efficient at handling some features + (independent sub-expressions for example), even when match_extra is not + used. +
                • +
                • + The matching algorithms are much less efficient (i.e. slower), when match_extra + is used. Mostly this is down to the extra memory allocations that have + to take place. +
                -

                -

                -
                template <class BidirectionalIterator, class Allocator>
                +
                template <class BidirectionalIterator, class Allocator>
                 bool operator == (const match_results<BidirectionalIterator, Allocator>& m1,
                                   const match_results<BidirectionalIterator, Allocator>& m2);
                 
                @@ -828,9 +789,7 @@ Effects: Compares the two sequences for equality.

                -

                -

                -
                template <class BidirectionalIterator, class Allocator>
                +
                template <class BidirectionalIterator, class Allocator>
                 bool operator != (const match_results<BidirectionalIterator, Allocator>& m1,
                                   const match_results<BidirectionalIterator, Allocator>& m2);
                 
                @@ -838,9 +797,7 @@ Effects: Compares the two sequences for inequality.

                -

                -

                -
                template <class charT, class traits, class BidirectionalIterator, class Allocator>
                +
                template <class charT, class traits, class BidirectionalIterator, class Allocator>
                 basic_ostream<charT, traits>&
                    operator << (basic_ostream<charT, traits>& os,
                                const match_results<BidirectionalIterator, Allocator>& m);
                @@ -851,9 +808,7 @@
                         << m.str();
                         Returns os.
                       

                -

                -

                -
                template <class BidirectionalIterator, class Allocator>
                +
                template <class BidirectionalIterator, class Allocator>
                 void swap(match_results<BidirectionalIterator, Allocator>& m1,
                          match_results<BidirectionalIterator, Allocator>& m2);
                 
                @@ -871,7 +826,7 @@
                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index 84aa7342..a37509ef 100644 --- a/doc/html/boost_regex/ref/non_std_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings.html @@ -2,8 +2,8 @@ Interfacing With Non-Standard String Types - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +

                Interfacing With Non-Standard String Types @@ -81,7 +81,7 @@
                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings/icu.html b/doc/html/boost_regex/ref/non_std_strings/icu.html index deda7716..113c3b2e 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu.html @@ -2,8 +2,8 @@ Working With Unicode and ICU String Types - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +

                Working With Unicode and ICU String Types @@ -48,7 +48,7 @@
                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/intro.html b/doc/html/boost_regex/ref/non_std_strings/icu/intro.html index c62de8c0..8b6c20b8 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/intro.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/intro.html @@ -2,8 +2,8 @@ Introduction to using Regex with ICU - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +
                Introduction to using Regex with ICU @@ -45,19 +45,19 @@

                The header will enable you to:

                -
                  -
                • - Create regular expressions that treat Unicode strings as sequences - of UTF-32 code points. -
                • -
                • - Create regular expressions that support various Unicode data properties, - including character classification. -
                • -
                • - Transparently search Unicode strings that are encoded as either UTF-8, - UTF-16 or UTF-32. -
                • +
                    +
                  • + Create regular expressions that treat Unicode strings as sequences + of UTF-32 code points. +
                  • +
                  • + Create regular expressions that support various Unicode data properties, + including character classification. +
                  • +
                  • + Transparently search Unicode strings that are encoded as either UTF-8, + UTF-16 or UTF-32. +
                @@ -70,7 +70,7 @@

                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index eace8fdd..f00c3a25 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -2,8 +2,8 @@ Unicode Regular Expression Algorithms - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +
                Unicode Regular Expression Algorithms @@ -43,7 +43,7 @@ on to the "real" algorithm.

                - + u32regex_match

                @@ -89,7 +89,7 @@ }

                - + u32regex_search

                @@ -128,7 +128,7 @@ }

                - + u32regex_replace

                @@ -174,7 +174,7 @@


                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index c6e20800..20d775a4 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -2,8 +2,8 @@ Unicode Aware Regex Iterators - - + + @@ -20,15 +20,15 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +
                - + u32regex_iterator

                @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

                - + u32regex_token_iterator

                @@ -317,7 +317,7 @@


                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html index 6b6a598c..ae62c941 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html @@ -2,8 +2,8 @@ Unicode regular expression types - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +
                Unicode regular expression types @@ -126,7 +126,7 @@
                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html index 21c6965b..553cf672 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html @@ -2,8 +2,8 @@ Using Boost Regex With MFC Strings - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +

                Using Boost Regex With MFC Strings @@ -50,7 +50,7 @@
                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 325379c9..2a9cf74b 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -2,8 +2,8 @@ Overloaded Algorithms For MFC String Types - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +
                Overloaded Algorithms For MFC String Types @@ -34,7 +34,7 @@ here they are anyway:

                - + regex_match

                @@ -82,7 +82,7 @@ }

                - + regex_match (second overload)
                @@ -110,7 +110,7 @@ }
                - + regex_search

                @@ -149,7 +149,7 @@ }

                - + regex_search (second overload)
                @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

                - + regex_replace

                @@ -222,7 +222,7 @@


                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html index 0e4c2c8a..8707b322 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html @@ -2,8 +2,8 @@ Introduction to Boost.Regex and MFC Strings - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +
                Introduction to Boost.Regex and MFC Strings @@ -59,7 +59,7 @@
                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index bbed7d5c..f42728e5 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -2,8 +2,8 @@ Iterating Over the Matches Within An MFC String - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +
              - + regex_token_iterator creation helpers
              @@ -144,7 +144,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html index 9ac35706..ab2cdebb 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html @@ -2,8 +2,8 @@ Regular Expression Creation From an MFC String - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +
              Regular Expression Creation From an MFC String @@ -51,7 +51,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html index fd9be6ac..26d9aae0 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html @@ -2,8 +2,8 @@ Regex Types Used With MFC Strings - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +
              Regex Types Used With MFC Strings @@ -52,7 +52,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 6a5533d2..c8cfb3e4 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -2,8 +2,8 @@ POSIX Compatible C API's - - + + @@ -20,15 +20,15 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +
              - +
              [Note][Note] Note

              @@ -54,7 +54,7 @@

              - +
              [Important][Important] Important

              @@ -108,50 +108,50 @@

              -

              - Member -

              +

              + Member +

              -

              - Meaning -

              +

              + Meaning +

              -

              - unsigned int - re_nsub -

              +

              + unsigned int + re_nsub +

              -

              - This is filled in by regcomp - and indicates the number of sub-expressions contained in the regular - expression. -

              +

              + This is filled in by regcomp + and indicates the number of sub-expressions contained in the regular + expression. +

              -

              - const TCHAR* re_endp -

              +

              + const TCHAR* re_endp +

              -

              - Points to the end of the expression to compile when the flag REG_PEND - is set. -

              +

              + Points to the end of the expression to compile when the flag REG_PEND + is set. +

              - +
              [Note][Note] Note

              @@ -162,10 +162,8 @@ upon the macro UNICODE.

              -

              -

              -
              - +
              + regcomp

              @@ -180,206 +178,204 @@

              -

              - Flag -

              +

              + Flag +

              -

              - Meaning -

              +

              + Meaning +

              -

              - REG_EXTENDED -

              +

              + REG_EXTENDED +

              -

              - Compiles modern regular expressions. Equivalent to regbase::char_classes | - regbase::intervals | - regbase::bk_refs. -

              +

              + Compiles modern regular expressions. Equivalent to regbase::char_classes | + regbase::intervals | + regbase::bk_refs. +

              -

              - REG_BASIC -

              +

              + REG_BASIC +

              -

              - Compiles basic (obsolete) regular expression syntax. Equivalent to - regbase::char_classes | - regbase::intervals | - regbase::limited_ops | - regbase::bk_braces | - regbase::bk_parens | - regbase::bk_refs. -

              +

              + Compiles basic (obsolete) regular expression syntax. Equivalent + to regbase::char_classes | + regbase::intervals | + regbase::limited_ops | + regbase::bk_braces | + regbase::bk_parens | + regbase::bk_refs. +

              -

              - REG_NOSPEC -

              +

              + REG_NOSPEC +

              -

              - All characters are ordinary, the expression is a literal string. -

              +

              + All characters are ordinary, the expression is a literal string. +

              -

              - REG_ICASE -

              +

              + REG_ICASE +

              -

              - Compiles for matching that ignores character case. -

              +

              + Compiles for matching that ignores character case. +

              -

              - REG_NOSUB -

              +

              + REG_NOSUB +

              -

              - Has no effect in this library. -

              +

              + Has no effect in this library. +

              -

              - REG_NEWLINE -

              +

              + REG_NEWLINE +

              -

              - When this flag is set a dot does not match the newline character. -

              +

              + When this flag is set a dot does not match the newline character. +

              -

              - REG_PEND -

              +

              + REG_PEND +

              -

              - When this flag is set the re_endp parameter of the regex_t structure - must point to the end of the regular expression to compile. -

              +

              + When this flag is set the re_endp parameter of the regex_t structure + must point to the end of the regular expression to compile. +

              -

              - REG_NOCOLLATE -

              +

              + REG_NOCOLLATE +

              -

              - When this flag is set then locale dependent collation for character - ranges is turned off. -

              +

              + When this flag is set then locale dependent collation for character + ranges is turned off. +

              -

              - REG_ESCAPE_IN_LISTS -

              +

              + REG_ESCAPE_IN_LISTS +

              -

              - When this flag is set, then escape sequences are permitted in bracket - expressions (character sets). -

              +

              + When this flag is set, then escape sequences are permitted in bracket + expressions (character sets). +

              -

              - REG_NEWLINE_ALT -

              +

              + REG_NEWLINE_ALT +

              -

              - When this flag is set then the newline character is equivalent to - the alternation operator |. -

              +

              + When this flag is set then the newline character is equivalent + to the alternation operator |. +

              -

              - REG_PERL -

              +

              + REG_PERL +

              -

              - Compiles Perl like regular expressions. -

              +

              + Compiles Perl like regular expressions. +

              -

              - REG_AWK -

              +

              + REG_AWK +

              -

              - A shortcut for awk-like behavior: REG_EXTENDED - | REG_ESCAPE_IN_LISTS -

              +

              + A shortcut for awk-like behavior: REG_EXTENDED + | REG_ESCAPE_IN_LISTS +

              -

              - REG_GREP -

              +

              + REG_GREP +

              -

              - A shortcut for grep like behavior: REG_BASIC - | REG_NEWLINE_ALT -

              +

              + A shortcut for grep like behavior: REG_BASIC + | REG_NEWLINE_ALT +

              -

              - REG_EGREP -

              +

              + REG_EGREP +

              -

              - A shortcut for egrep like behavior: REG_EXTENDED - | REG_NEWLINE_ALT -

              +

              + A shortcut for egrep like behavior: REG_EXTENDED + | REG_NEWLINE_ALT +

              -

              -

              -
              - +
              + regerror

              @@ -393,63 +389,63 @@ -

              - Parameter -

              +

              + Parameter +

              -

              - Meaning -

              +

              + Meaning +

              -

              - int code -

              +

              + int code +

              -

              - The error code. -

              +

              + The error code. +

              -

              - const regex_t* e -

              +

              + const regex_t* e +

              -

              - The regular expression (can be null). -

              +

              + The regular expression (can be null). +

              -

              - char* buf -

              +

              + char* buf +

              -

              - The buffer to fill in with the error message. -

              +

              + The buffer to fill in with the error message. +

              -

              - unsigned int buf_size -

              +

              + unsigned int buf_size +

              -

              - The length of buf. -

              +

              + The length of buf. +

              @@ -464,10 +460,8 @@ equal to buf_size then regerror will have to be called again with a larger buffer.

              -

              -

              -
              - +
              + regexec

              @@ -484,60 +478,58 @@ -

              - Flag -

              +

              + Flag +

              -

              - Meaning -

              +

              + Meaning +

              -

              - REG_NOTBOL -

              +

              + REG_NOTBOL +

              -

              - Parameter buf does not represent the start of a line. -

              +

              + Parameter buf does not represent the start of a line. +

              -

              - REG_NOTEOL -

              +

              + REG_NOTEOL +

              -

              - Parameter buf does not terminate at the end of a line. -

              +

              + Parameter buf does not terminate at the end of a line. +

              -

              - REG_STARTEND -

              +

              + REG_STARTEND +

              -

              - The string searched starts at buf + pmatch[0].rm_so and ends at buf - + pmatch[0].rm_eo. -

              +

              + The string searched starts at buf + pmatch[0].rm_so and ends at + buf + pmatch[0].rm_eo. +

              -

              -

              -
              - +
              + regfree

              @@ -555,7 +547,7 @@


              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index e8d29d44..a7f82710 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -2,8 +2,8 @@ regex_iterator - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +
              @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);
              - + Description

              @@ -86,17 +86,13 @@ is constructed from a pair of iterators, and enumerates all occurrences of a regular expression within that iterator range.

              -

              -

              -
              regex_iterator();
              +
              regex_iterator();
               

              Effects: constructs an end of sequence regex_iterator.

              -

              -

              -
              regex_iterator(BidirectionalIterator a, BidirectionalIterator b, 
              +
              regex_iterator(BidirectionalIterator a, BidirectionalIterator b, 
                              const regex_type& re, 
                              match_flag_type m = match_default);
               
              @@ -114,9 +110,7 @@ matcher exhausts its permitted memory allocation (if Boost.Regex is configured in non-recursive mode).

              -

              -

              -
              regex_iterator(const regex_iterator& that);
              +
              regex_iterator(const regex_iterator& that);
               

              Effects: constructs a copy of that. @@ -124,9 +118,7 @@

              Postconditions: *this == that.

              -

              -

              -
              regex_iterator& operator=(const regex_iterator&);
              +
              regex_iterator& operator=(const regex_iterator&);
               

              Effects: sets *this equal to those in that. @@ -134,24 +126,18 @@

              Postconditions: *this == that.

              -

              -

              -
              bool operator==(const regex_iterator& that)const;
              +
              bool operator==(const regex_iterator& that)const;
               

              Effects: returns true if *this is equal to that.

              -

              -

              -
              bool operator!=(const regex_iterator&)const;
              +
              bool operator!=(const regex_iterator&)const;
               

              Effects: returns !(*this == that).

              -

              -

              -
              const value_type& operator*()const;
              +
              const value_type& operator*()const;
               

              Effects: dereferencing a regex_iterator object it yields @@ -165,224 +151,221 @@ -

              - Element -

              +

              + Element +

              -

              - Value -

              +

              + Value +

              -

              - (*it).size() -

              +

              + (*it).size() +

              -

              - re.mark_count() -

              +

              + re.mark_count() +

              -

              - (*it).empty() -

              +

              + (*it).empty() +

              -

              - false -

              +

              + false +

              -

              - (*it).prefix().first -

              +

              + (*it).prefix().first +

              -

              - The end of the last match found, or the start of the underlying sequence - if this is the first match enumerated -

              +

              + The end of the last match found, or the start of the underlying + sequence if this is the first match enumerated +

              -

              - (*it).prefix().last -

              +

              + (*it).prefix().last +

              -

              - The same as the start of the match found: (*it)[0].first -

              +

              + The same as the start of the match found: (*it)[0].first +

              -

              - (*it).prefix().matched -

              +

              + (*it).prefix().matched +

              -

              - True if the prefix did not match an empty string: (*it).prefix().first != - (*it).prefix().second -

              +

              + True if the prefix did not match an empty string: (*it).prefix().first + != (*it).prefix().second +

              -

              - (*it).suffix().first -

              +

              + (*it).suffix().first +

              -

              - The same as the end of the match found: (*it)[0].second -

              +

              + The same as the end of the match found: (*it)[0].second +

              -

              - (*it).suffix().last -

              +

              + (*it).suffix().last +

              -

              - The end of the underlying sequence. -

              +

              + The end of the underlying sequence. +

              -

              - (*it).suffix().matched -

              +

              + (*it).suffix().matched +

              -

              - True if the suffix did not match an empty string: (*it).suffix().first != - (*it).suffix().second -

              +

              + True if the suffix did not match an empty string: (*it).suffix().first + != (*it).suffix().second +

              -

              - (*it)[0].first -

              +

              + (*it)[0].first +

              -

              - The start of the sequence of characters that matched the regular - expression -

              +

              + The start of the sequence of characters that matched the regular + expression +

              -

              - (*it)[0].second -

              +

              + (*it)[0].second +

              -

              - The end of the sequence of characters that matched the regular expression -

              +

              + The end of the sequence of characters that matched the regular + expression +

              -

              - (*it)[0].matched -

              +

              + (*it)[0].matched +

              -

              - true if a full match was found, and false if it was a partial match - (found as a result of the match_partial flag being set). -

              +

              + true if a full match was found, and false if it was a partial match + (found as a result of the match_partial flag being set). +

              -

              - (*it)[n].first -

              +

              + (*it)[n].first +

              -

              - For all integers n < (*it).size(), - the start of the sequence that matched sub-expression n. - Alternatively, if sub-expression n did not participate - in the match, then last. -

              +

              + For all integers n < (*it).size(), + the start of the sequence that matched sub-expression n. + Alternatively, if sub-expression n did not + participate in the match, then last. +

              -

              - (*it)[n].second -

              +

              + (*it)[n].second +

              -

              - For all integers n < (*it).size(), - the end of the sequence that matched sub-expression n. - Alternatively, if sub-expression n did not participate - in the match, then last. -

              +

              + For all integers n < (*it).size(), + the end of the sequence that matched sub-expression n. + Alternatively, if sub-expression n did not + participate in the match, then last. +

              -

              - (*it)[n].matched -

              +

              + (*it)[n].matched +

              -

              - For all integers n < (*it).size(), - true if sub-expression n participated in the - match, false otherwise. -

              +

              + For all integers n < (*it).size(), + true if sub-expression n participated in the + match, false otherwise. +

              -

              - (*it).position(n) -

              +

              + (*it).position(n) +

              -

              - For all integers n < (*it).size(), - then the distance from the start of the underlying sequence to the - start of sub-expression match n. -

              +

              + For all integers n < (*it).size(), + then the distance from the start of the underlying sequence to + the start of sub-expression match n. +

            -

            -

            -
            const value_type* operator->()const;
            +
            const value_type* operator->()const;
             

            Effects: returns &(*this).

            -

            -

            -
            regex_iterator& operator++();
            +
            regex_iterator& operator++();
             

            Effects: moves the iterator to the next @@ -405,9 +388,7 @@

            Returns: *this.

            -

            -

            -
            regex_iterator operator++(int);
            +
            regex_iterator operator++(int);
             

            Effects: constructs a copy result of *this, then @@ -416,9 +397,7 @@

            Returns: result.

            -

            -

            -
            template <class charT, class traits> 
            +
            template <class charT, class traits> 
             regex_iterator<const charT*, charT, traits>
                make_regex_iterator(const charT* p, const basic_regex<charT, traits>& e, 
                                  regex_constants::match_flag_type m = regex_constants::match_default); 
            @@ -436,7 +415,7 @@
                     m.
                   

            - + Examples

            @@ -545,7 +524,7 @@


            -PrevUpHomeNext +PrevUpHomeNext
            diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index b4e44f9f..0d416d71 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -2,8 +2,8 @@ regex_match - - + + @@ -20,9 +20,9 @@
            -PrevUpHomeNext +PrevUpHomeNext
            -
            +
            @@ -37,7 +37,7 @@

            - + @@ -360,7 +361,7 @@ Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).

            - + Examples

            @@ -408,7 +409,7 @@

            [Important][Important] Important

            @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

            - + Description
            template <class BidirectionalIterator, class Allocator, class charT, class traits>
            @@ -122,190 +122,191 @@
             
             
            -

            - Element -

            +

            + Element +

            -

            - Value -

            +

            + Value +

            -

            - m.size() -

            +

            + m.size() +

            -

            - e.mark_count() -

            +

            + e.mark_count() +

            -

            - m.empty() -

            +

            + m.empty() +

            -

            - false -

            +

            + false +

            -

            - m.prefix().first -

            +

            + m.prefix().first +

            -

            - first -

            +

            + first +

            -

            - m.prefix().last -

            +

            + m.prefix().last +

            -

            - first -

            +

            + first +

            -

            - m.prefix().matched -

            +

            + m.prefix().matched +

            -

            - false -

            +

            + false +

            -

            - m.suffix().first -

            +

            + m.suffix().first +

            -

            - last -

            +

            + last +

            -

            - m.suffix().last -

            +

            + m.suffix().last +

            -

            - last -

            +

            + last +

            -

            - m.suffix().matched -

            +

            + m.suffix().matched +

            -

            - false -

            +

            + false +

            -

            - m[0].first -

            +

            + m[0].first +

            -

            - first -

            +

            + first +

            -

            - m[0].second -

            +

            + m[0].second +

            -

            - last -

            +

            + last +

            -

            - m[0].matched -

            +

            + m[0].matched +

            -

            - true if a full match was found, and false if it was a partial match - (found as a result of the match_partial flag being set). -

            +

            + true if a full match was found, and false if it was a partial match + (found as a result of the match_partial flag being set). +

            -

            - m[n].first -

            +

            + m[n].first +

            -

            - For all integers n < m.size(), the start of the sequence that - matched sub-expression n. Alternatively, if - sub-expression n did not participate in the - match, then last. -

            +

            + For all integers n < m.size(), the start of the sequence that + matched sub-expression n. Alternatively, if + sub-expression n did not participate in the + match, then last. +

            -

            - m[n].second -

            +

            + m[n].second +

            -

            - For all integers n < m.size(), the end of the sequence that matched - sub-expression n. Alternatively, if sub-expression - n did not participate in the match, then last. -

            +

            + For all integers n < m.size(), the end of the sequence that + matched sub-expression n. Alternatively, if + sub-expression n did not participate in the + match, then last. +

            -

            - m[n].matched -

            +

            + m[n].matched +

            -

            - For all integers n < m.size(), true if sub-expression n - participated in the match, false otherwise. -

            +

            + For all integers n < m.size(), true if sub-expression n + participated in the match, false otherwise. +


            -PrevUpHomeNext +PrevUpHomeNext
            diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index c739efd5..da81c097 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -2,8 +2,8 @@ regex_replace - - + + @@ -20,9 +20,9 @@
            -PrevUpHomeNext +PrevUpHomeNext
            -
            +
            @@ -53,7 +53,7 @@ match_flag_type flags = match_default);
            - + Description
            template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
            @@ -199,7 +199,7 @@
                     and then returns result.
                   

            - + Examples

            @@ -326,7 +326,7 @@


            -PrevUpHomeNext +PrevUpHomeNext
            diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 105d53af..20d0bcf2 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -2,8 +2,8 @@ regex_search - - + + @@ -20,9 +20,9 @@
            -PrevUpHomeNext +PrevUpHomeNext
            -
            +
            @@ -73,7 +73,7 @@ match_flag_type flags = match_default);
            - + Description
            template <class BidirectionalIterator, class Allocator, class charT, class traits>
            @@ -114,193 +114,195 @@
             
             
             
            -              

            - Element -

            +

            + Element +

            -

            - Value -

            +

            + Value +

            -

            - m.size() -

            +

            + m.size() +

            -

            - e.mark_count() -

            +

            + e.mark_count() +

            -

            - m.empty() -

            +

            + m.empty() +

            -

            - false -

            +

            + false +

            -

            - m.prefix().first -

            +

            + m.prefix().first +

            -

            - first -

            +

            + first +

            -

            - m.prefix().last -

            +

            + m.prefix().last +

            -

            - m[0].first -

            +

            + m[0].first +

            -

            - m.prefix().matched -

            +

            + m.prefix().matched +

            -

            - m.prefix().first != - m.prefix().second -

            +

            + m.prefix().first != + m.prefix().second +

            -

            - m.suffix().first -

            +

            + m.suffix().first +

            -

            - m[0].second -

            +

            + m[0].second +

            -

            - m.suffix().last -

            +

            + m.suffix().last +

            -

            - last -

            +

            + last +

            -

            - m.suffix().matched -

            +

            + m.suffix().matched +

            -

            - m.suffix().first != - m.suffix().second -

            +

            + m.suffix().first != + m.suffix().second +

            -

            - m[0].first -

            +

            + m[0].first +

            -

            - The start of the sequence of characters that matched the regular - expression -

            +

            + The start of the sequence of characters that matched the regular + expression +

            -

            - m[0].second -

            +

            + m[0].second +

            -

            - The end of the sequence of characters that matched the regular expression -

            +

            + The end of the sequence of characters that matched the regular + expression +

            -

            - m[0].matched -

            +

            + m[0].matched +

            -

            - true if a full match was found, and false if it was a partial match - (found as a result of the match_partial flag being set). -

            +

            + true if a full match was found, and false if it was a partial match + (found as a result of the match_partial flag being set). +

            -

            - m[n].first -

            +

            + m[n].first +

            -

            - For all integers n < m.size(), the start of the sequence that - matched sub-expression n. Alternatively, if - sub-expression n did not participate in the - match, then last. -

            +

            + For all integers n < m.size(), the start of the sequence that + matched sub-expression n. Alternatively, if + sub-expression n did not participate in the + match, then last. +

            -

            - m[n].second -

            +

            + m[n].second +

            -

            - For all integers n < m.size(), the end of the sequence that matched - sub-expression n. Alternatively, if sub-expression - n did not participate in the match, then last. -

            +

            + For all integers n < m.size(), the end of the sequence that + matched sub-expression n. Alternatively, if + sub-expression n did not participate in the + match, then last. +

            -

            - m[n].matched -

            +

            + m[n].matched +

            -

            - For all integers n < m.size(), true if sub-expression n - participated in the match, false otherwise. -

            +

            + For all integers n < m.size(), true if sub-expression n + participated in the match, false otherwise. +

            @@ -355,7 +357,7 @@ Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).

            - + Examples

            @@ -417,7 +419,7 @@


            -PrevUpHomeNext +PrevUpHomeNext
            diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index cf389fbe..10947062 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -2,8 +2,8 @@ regex_token_iterator - - + + @@ -20,9 +20,9 @@
            -PrevUpHomeNext +PrevUpHomeNext
            -
            +
            @@ -136,19 +136,15 @@ regex_constants::match_flag_type m = regex_constants::match_default);
            - + Description
            -

            -

            -
            regex_token_iterator();
            +
            regex_token_iterator();
             

            Effects: constructs an end of sequence iterator.

            -

            -

            -
            regex_token_iterator(BidirectionalIterator a, 
            +
            regex_token_iterator(BidirectionalIterator a, 
                                  BidirectionalIterator b, 
                                  const regex_type& re, 
                                  int submatch = 0, 
            @@ -176,9 +172,7 @@
                     matcher exhausts its permitted memory allocation (if Boost.Regex is configured
                     in non-recursive mode).
                   

            -

            -

            -
            regex_token_iterator(BidirectionalIterator a, 
            +
            regex_token_iterator(BidirectionalIterator a, 
                                  BidirectionalIterator b, 
                                  const regex_type& re, 
                                  const std::vector<int>& submatches, 
            @@ -210,9 +204,7 @@
                     matcher exhausts its permitted memory allocation (if Boost.Regex is configured
                     in non-recursive mode).
                   

            -

            -

            -
            template <std::size_t N>
            +
            template <std::size_t N>
             regex_token_iterator(BidirectionalIterator a, 
                                  BidirectionalIterator b, 
                                  const regex_type& re, 
            @@ -243,9 +235,7 @@
                     matcher exhausts its permitted memory allocation (if Boost.Regex is configured
                     in non-recursive mode).
                   

            -

            -

            -
            regex_token_iterator(const regex_token_iterator& that);
            +
            regex_token_iterator(const regex_token_iterator& that);
             

            Effects: constructs a copy of that. @@ -253,9 +243,7 @@

            Postconditions: *this == that.

            -

            -

            -
            regex_token_iterator& operator=(const regex_token_iterator& that);
            +
            regex_token_iterator& operator=(const regex_token_iterator& that);
             

            Effects: sets *this to be equal to that. @@ -263,38 +251,28 @@

            Postconditions: *this == that.

            -

            -

            -
            bool operator==(const regex_token_iterator&)const;
            +
            bool operator==(const regex_token_iterator&)const;
             

            Effects: returns true if *this is the same position as that.

            -

            -

            -
            bool operator!=(const regex_token_iterator&)const;
            +
            bool operator!=(const regex_token_iterator&)const;
             

            Effects: returns !(*this == that).

            -

            -

            -
            const value_type& operator*()const;
            +
            const value_type& operator*()const;
             

            Effects: returns the current character sequence being enumerated.

            -

            -

            -
            const value_type* operator->()const;
            +
            const value_type* operator->()const;
             

            Effects: returns &(*this).

            -

            -

            -
            regex_token_iterator& operator++();
            +
            regex_token_iterator& operator++();
             

            Effects: Moves on to the next character @@ -311,9 +289,7 @@

            Returns: *this.

            -

            -

            -
            regex_token_iterator& operator++(int);
            +
            regex_token_iterator& operator++(int);
             

            Effects: constructs a copy result of *this, then @@ -322,9 +298,7 @@

            Returns: result.

            -

            -

            -
            template <class charT, class traits>
            +
            template <class charT, class traits>
             regex_token_iterator<const charT*, charT, traits> 
                make_regex_token_iterator(
                      const charT* p, 
            @@ -383,7 +357,7 @@
                     m.
                   

            - + Examples

            @@ -504,7 +478,7 @@


            -PrevUpHomeNext +PrevUpHomeNext
            diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 92946119..8c69f5bc 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -2,8 +2,8 @@ regex_traits - - + + @@ -20,9 +20,9 @@
            -PrevUpHomeNext +PrevUpHomeNext
            -
            +
            @@ -46,7 +46,7 @@ } // namespace boost
            - + Description

            @@ -54,36 +54,37 @@ just a thin wrapper around an actual implemention class, which may be one of:

            -
              -
            • -c_regex_traits: this class - is deprecated, it wraps the C locale, and is used as the default implementation - when the platform is not Win32, and the C++ locale is not available. -
            • -
            • -cpp_regex_traits: the default - traits class for non-Win32 platforms, allows the regex class to be imbued - with a std::locale instance. -
            • -
            • -w32_regex_traits: the default - traits class implementation on Win32 platforms, allows the regex class - to be imbued with an LCID. -
            • +
                +
              • + c_regex_traits: this + class is deprecated, it wraps the C locale, and is used as the default + implementation when the platform is not Win32, and the C++ locale is + not available. +
              • +
              • + cpp_regex_traits: the + default traits class for non-Win32 platforms, allows the regex class + to be imbued with a std::locale instance. +
              • +
              • + w32_regex_traits: the + default traits class implementation on Win32 platforms, allows the regex + class to be imbued with an LCID. +

              The default behavior can be altered by defining one of the following configuration macros in boost/regex/user.hpp

              -
                -
              • - BOOST_REGEX_USE_C_LOCALE: makes c_regex_traits - the default. -
              • -
              • - BOOST_REGEX_USE_CPP_LOCALE: makes cpp_regex_traits - the default. -
              • +
                  +
                • + BOOST_REGEX_USE_C_LOCALE: makes c_regex_traits + the default. +
                • +
                • + BOOST_REGEX_USE_CPP_LOCALE: makes cpp_regex_traits + the default. +

                All these traits classes fulfil the traits @@ -100,7 +101,7 @@


                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 3c906aea..b4545ca5 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -2,8 +2,8 @@ sub_match - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +
                @@ -329,74 +329,56 @@ } // namespace boost
            - + Description
            - + Members
            -

            -

            -
            typedef typename std::iterator_traits<iterator>::value_type value_type;
            +
            typedef typename std::iterator_traits<iterator>::value_type value_type;
             

            The type pointed to by the iterators.

            -

            -

            -
            typedef typename std::iterator_traits<iterator>::difference_type difference_type;
            +
            typedef typename std::iterator_traits<iterator>::difference_type difference_type;
             

            A type that represents the difference between two iterators.

            -

            -

            -
            typedef BidirectionalIterator iterator;
            +
            typedef BidirectionalIterator iterator;
             

            The iterator type.

            -

            -

            -
            iterator first
            +
            iterator first
             

            An iterator denoting the position of the start of the match.

            -

            -

            -
            iterator second
            +
            iterator second
             

            An iterator denoting the position of the end of the match.

            -

            -

            -
            bool matched
            +
            bool matched
             

            A Boolean value denoting whether this sub-expression participated in the match.

            -

            -

            -
            static difference_type length();
            +
            static difference_type length();
             

            Effects: returns the length of this matched sub-expression, or 0 if this sub-expression was not matched: matched ? distance(first, second) : 0).

            -

            -

            -
            operator basic_string<value_type>()const;
            +
            operator basic_string<value_type>()const;
             

            Effects: converts *this into a string: returns (matched ? basic_string<value_type>(first, second) : basic_string<value_type>()).

            -

            -

            -
            basic_string<value_type> str()const;
            +
            basic_string<value_type> str()const;
             

            Effects: returns a string representation @@ -404,33 +386,25 @@ (matched ? basic_string<value_type>(first, second) : basic_string<value_type>()).

            -

            -

            -
            int compare(const sub_match& s)const;
            +
            int compare(const sub_match& s)const;
             

            Effects: performs a lexical comparison to s: returns str().compare(s.str()).

            -

            -

            -
            int compare(const basic_string<value_type>& s)const;
            +
            int compare(const basic_string<value_type>& s)const;
             

            Effects: compares *this to the string s: returns str().compare(s).

            -

            -

            -
            int compare(const value_type* s)const;
            +
            int compare(const value_type* s)const;
             

            Effects: compares *this to the null-terminated string s: returns str().compare(s).

            -

            -

            -
            typedef implementation-private capture_sequence_type;
            +
            typedef implementation-private capture_sequence_type;
             

            Defines an implementation-specific type that satisfies the requirements of @@ -438,9 +412,7 @@ whose value_type is a sub_match<BidirectionalIterator>. This type happens to be std::vector<sub_match<BidirectionalIterator> >, but you shouldn't actually rely on that.

            -

            -

            -
            const capture_sequence_type& captures()const; 
            +
            const capture_sequence_type& captures()const; 
             

            Effects: returns a sequence containing all @@ -457,29 +429,28 @@ Rationale: Enabling this feature has several consequences:

            -
              -
            • - sub_match occupies more memory resulting in complex expressions running - out of memory or stack space more quickly during matching. -
            • -
            • - The matching algorithms are less efficient at handling some features (independent - sub-expressions for example), even when match_extra is not used. -
            • -
            • - The matching algorithms are much less efficient (i.e. slower), when match_extra - is used. Mostly this is down to the extra memory allocations that have - to take place. -
            • +
                +
              • + sub_match occupies more memory resulting in complex expressions running + out of memory or stack space more quickly during matching. +
              • +
              • + The matching algorithms are less efficient at handling some features + (independent sub-expressions for example), even when match_extra is not + used. +
              • +
              • + The matching algorithms are much less efficient (i.e. slower), when match_extra + is used. Mostly this is down to the extra memory allocations that have + to take place. +
              - + sub_match non-member operators
              -

              -

              -
              template <class BidirectionalIterator>
              +
              template <class BidirectionalIterator>
               bool operator == (const sub_match<BidirectionalIterator>& lhs,
                                 const sub_match<BidirectionalIterator>& rhs);
               
              @@ -487,9 +458,7 @@ Effects: returns lhs.compare(rhs) == 0.

              -

              -

              -
              template <class BidirectionalIterator>
              +
              template <class BidirectionalIterator>
               bool operator != (const sub_match<BidirectionalIterator>& lhs,
                                 const sub_match<BidirectionalIterator>& rhs);
               
              @@ -497,9 +466,7 @@ Effects: returns lhs.compare(rhs) != 0.

              -

              -

              -
              template <class BidirectionalIterator>
              +
              template <class BidirectionalIterator>
               bool operator < (const sub_match<BidirectionalIterator>& lhs,
                              const sub_match<BidirectionalIterator>& rhs);
               
              @@ -507,9 +474,7 @@ Effects: returns lhs.compare(rhs) < 0.

              -

              -

              -
              template <class BidirectionalIterator>
              +
              template <class BidirectionalIterator>
               bool operator <= (const sub_match<BidirectionalIterator>& lhs,
                                 const sub_match<BidirectionalIterator>& rhs);
               
              @@ -517,9 +482,7 @@ Effects: returns lhs.compare(rhs) <= 0.

              -

              -

              -
              template <class BidirectionalIterator>
              +
              template <class BidirectionalIterator>
               bool operator >= (const sub_match<BidirectionalIterator>& lhs,
                                 const sub_match<BidirectionalIterator>& rhs);
               
              @@ -527,9 +490,7 @@ Effects: returns lhs.compare(rhs) >= 0.

              -

              -

              -
              template <class BidirectionalIterator>
              +
              template <class BidirectionalIterator>
               bool operator > (const sub_match<BidirectionalIterator>& lhs,
                              const sub_match<BidirectionalIterator>& rhs);
               
              @@ -537,9 +498,7 @@ Effects: returns lhs.compare(rhs) > 0.

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator == (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                         traits,
                                                                         Allocator>& lhs, 
              @@ -549,9 +508,7 @@
                       Effects: returns lhs
                       == rhs.str().
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator != (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                         traits, 
                                                                         Allocator>& lhs,
              @@ -561,9 +518,7 @@
                       Effects: returns lhs
                       != rhs.str().
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator < (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                        traits, 
                                                        Allocator>& lhs,
              @@ -573,9 +528,7 @@
                       Effects: returns lhs
                       < rhs.str().
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator > (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                        traits, 
                                                                        Allocator>& lhs,
              @@ -585,9 +538,7 @@
                       Effects: returns lhs
                       > rhs.str().
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator >= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                         traits, 
                                                         Allocator>& lhs,
              @@ -597,9 +548,7 @@
                       Effects: returns lhs
                       >= rhs.str().
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator <= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                         traits, 
                                                         Allocator>& lhs,
              @@ -609,9 +558,7 @@
                       Effects: returns lhs
                       <= rhs.str().
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator == (const sub_match<BidirectionalIterator>& lhs,
                                 const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                         traits, 
              @@ -621,9 +568,7 @@
                       Effects: returns lhs.str()
                       == rhs.
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator != (const sub_match<BidirectionalIterator>& lhs,
                                 const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                         traits, 
              @@ -633,9 +578,7 @@
                       Effects: returns lhs.str()
                       != rhs.
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator < (const sub_match<BidirectionalIterator>& lhs,
                              const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                      traits, 
              @@ -645,9 +588,7 @@
                       Effects: returns lhs.str()
                       < rhs.
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator > (const sub_match<BidirectionalIterator>& lhs,
                                const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                        traits, 
              @@ -657,9 +598,7 @@
                       Effects: returns lhs.str()
                       > rhs.
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator >= (const sub_match<BidirectionalIterator>& lhs,
                                 const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                         traits, 
              @@ -669,9 +608,7 @@
                       Effects: returns lhs.str()
                       >= rhs.
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               bool operator <= (const sub_match<BidirectionalIterator>& lhs,
                                 const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                         traits, 
              @@ -681,9 +618,7 @@
                       Effects: returns lhs.str()
                       <= rhs.
                     

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                 const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -691,9 +626,7 @@ Effects: returns lhs == rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                 const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -701,9 +634,7 @@ Effects: returns lhs != rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                              const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -711,9 +642,7 @@ Effects: returns lhs < rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                              const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -721,9 +650,7 @@ Effects: returns lhs > rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                 const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -731,9 +658,7 @@ Effects: returns lhs >= rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                 const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -741,9 +666,7 @@ Effects: returns lhs <= rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator == (const sub_match<BidirectionalIterator>& lhs, 
                                 typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
               
              @@ -751,9 +674,7 @@ Effects: returns lhs.str() == rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator != (const sub_match<BidirectionalIterator>& lhs, 
                                 typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
               
              @@ -761,9 +682,7 @@ Effects: returns lhs.str() != rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator < (const sub_match<BidirectionalIterator>& lhs, 
                              typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
               
              @@ -771,9 +690,7 @@ Effects: returns lhs.str() < rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator > (const sub_match<BidirectionalIterator>& lhs, 
                              typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
               
              @@ -781,9 +698,7 @@ Effects: returns lhs.str() > rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator >= (const sub_match<BidirectionalIterator>& lhs, 
                                 typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
               
              @@ -791,9 +706,7 @@ Effects: returns lhs.str() >= rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator <= (const sub_match<BidirectionalIterator>& lhs, 
                                 typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
               
              @@ -801,9 +714,7 @@ Effects: returns lhs.str() <= rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                 const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -811,9 +722,7 @@ Effects: returns lhs == rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                 const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -821,9 +730,7 @@ Effects: returns lhs != rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                              const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -831,9 +738,7 @@ Effects: returns lhs < rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                              const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -841,9 +746,7 @@ Effects: returns lhs > rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                 const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -851,9 +754,7 @@ Effects: returns lhs >= rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                 const sub_match<BidirectionalIterator>& rhs); 
               
              @@ -861,9 +762,7 @@ Effects: returns lhs <= rhs.str().

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator == (const sub_match<BidirectionalIterator>& lhs, 
                                 typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
               
              @@ -871,9 +770,7 @@ Effects: returns lhs.str() == rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator != (const sub_match<BidirectionalIterator>& lhs, 
                                 typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
               
              @@ -881,9 +778,7 @@ Effects: returns lhs.str() != rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator < (const sub_match<BidirectionalIterator>& lhs, 
                              typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
               
              @@ -891,9 +786,7 @@ Effects: returns lhs.str() < rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator > (const sub_match<BidirectionalIterator>& lhs, 
                              typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
               
              @@ -901,9 +794,7 @@ Effects: returns lhs.str() > rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator >= (const sub_match<BidirectionalIterator>& lhs, 
                                 typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
               
              @@ -911,9 +802,7 @@ Effects: returns lhs.str() >= rhs.

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               bool operator <= (const sub_match<BidirectionalIterator>& lhs, 
                                 typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
               
              @@ -926,9 +815,7 @@ to any type to which you can add a std::string and obtain a new string as the result.

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator> 
                  operator + (const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, 
                                                      traits, 
              @@ -939,9 +826,7 @@
                       Effects: returns s
                       + m.str().
                     

              -

              -

              -
              template <class BidirectionalIterator, class traits, class Allocator> 
              +
              template <class BidirectionalIterator, class traits, class Allocator> 
               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>
                  operator + (const sub_match<BidirectionalIterator>& m, 
                              const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, 
              @@ -952,9 +837,7 @@
                       Effects: returns m.str()
                       + s.
                     

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                  operator + (typename iterator_traits<BidirectionalIterator>::value_type const* s, 
                              const sub_match<BidirectionalIterator>& m); 
              @@ -963,9 +846,7 @@
                       Effects: returns s
                       + m.str().
                     

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                  operator + (const sub_match<BidirectionalIterator>& m, 
                              typename iterator_traits<BidirectionalIterator>::value_type const * s);
              @@ -974,9 +855,7 @@
                       Effects: returns m.str()
                       + s.
                     

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                  operator + (typename iterator_traits<BidirectionalIterator>::value_type const& s, 
                              const sub_match<BidirectionalIterator>& m); 
              @@ -985,9 +864,7 @@
                       Effects: returns s
                       + m.str().
                     

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                  operator + (const sub_match<BidirectionalIterator>& m, 
                              typename iterator_traits<BidirectionalIterator>::value_type const& s); 
              @@ -996,9 +873,7 @@
                       Effects: returns m.str()
                       + s.
                     

              -

              -

              -
              template <class BidirectionalIterator> 
              +
              template <class BidirectionalIterator> 
               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                  operator + (const sub_match<BidirectionalIterator>& m1,
                              const sub_match<BidirectionalIterator>& m2);
              @@ -1008,12 +883,10 @@
                       + m2.str().
                     

              - + Stream inserter
              -

              -

              -
              template <class charT, class traits, class BidirectionalIterator>
              +
              template <class charT, class traits, class BidirectionalIterator>
               basic_ostream<charT, traits>&
                  operator << (basic_ostream<charT, traits>& os
                              const sub_match<BidirectionalIterator>& m);
              @@ -1032,7 +905,7 @@
               
               
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html index 5b329bc6..a75e4c6c 100644 --- a/doc/html/boost_regex/ref/syntax_option_type.html +++ b/doc/html/boost_regex/ref/syntax_option_type.html @@ -2,8 +2,8 @@ syntax_option_type - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +
              @@ -51,7 +51,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html index 8f8a1a22..738102e3 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html @@ -2,8 +2,8 @@ Options for POSIX Basic Regular Expressions - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              Options for POSIX Basic Regular Expressions @@ -39,102 +39,103 @@ -

              - Element -

              +

              + Element +

              -

              - Standardized -

              +

              + Standardized +

              -

              - Effect When Set -

              +

              + Effect When Set +

              -

              - basic -

              +

              + basic +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the grammar recognized by the regular expression - engine is the same as that used by POSIX - basic regular expressions in IEEE Std 1003.1-2001, Portable - Operating System Interface (POSIX ), Base Definitions and Headers, - Section 9, Regular Expressions (FWD.1). -

              +

              + Specifies that the grammar recognized by the regular expression + engine is the same as that used by POSIX + basic regular expressions in IEEE Std 1003.1-2001, Portable + Operating System Interface (POSIX ), Base Definitions and Headers, + Section 9, Regular Expressions (FWD.1). +

              -

              - sed -

              +

              + sed +

              -

              - No -

              +

              + No +

              -

              - As Above. -

              +

              + As Above. +

              -

              - grep -

              +

              + grep +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the grammar recognized by the regular expression - engine is the same as that used by POSIX utility grep in IEEE Std 1003.1-2001, - Portable Operating System Interface (POSIX ), Shells and Utilities, - Section 4, Utilit\ies, grep (FWD.1). -

              -

              - That is to say, the same as POSIX - basic syntax, but with the newline character acting as an - alternation character; the expression is treated as a newline separated - list of alternatives. -

              +

              + Specifies that the grammar recognized by the regular expression + engine is the same as that used by POSIX utility grep in IEEE Std 1003.1-2001, + Portable Operating System Interface (POSIX ), Shells and Utilities, + Section 4, Utilit\ies, grep (FWD.1). +

              +

              + That is to say, the same as POSIX + basic syntax, but with the newline character acting as + an alternation character; the expression is treated as a newline + separated list of alternatives. +

              -

              - emacs -

              +

              + emacs +

              -

              - No -

              +

              + No +

              -

              - Specifies that the grammar recognised is the superset of the POSIX-Basic syntax - used by the emacs program. -

              +

              + Specifies that the grammar recognised is the superset of the + POSIX-Basic syntax + used by the emacs program. +

              @@ -150,247 +151,248 @@ -

              - Element -

              +

              + Element +

              -

              - Standardized -

              +

              + Standardized +

              -

              - Effect when set -

              +

              + Effect when set +

              -

              - icase -

              +

              + icase +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that matching of regular expressions against a character - container sequence shall be performed without regard to case. -

              +

              + Specifies that matching of regular expressions against a character + container sequence shall be performed without regard to case. +

              -

              - nosubs -

              +

              + nosubs +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that when a regular expression is matched against a character - container sequence, then no sub-expression matches are to be stored - in the supplied match_results structure. -

              +

              + Specifies that when a regular expression is matched against a + character container sequence, then no sub-expression matches + are to be stored in the supplied match_results structure. +

              -

              - optimize -

              +

              + optimize +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the regular expression engine should pay more attention - to the speed with which regular expressions are matched, and less - to the speed with which regular expression objects are constructed. - Otherwise it has no detectable effect on the program output. This - currently has no effect for Boost.Regex. -

              +

              + Specifies that the regular expression engine should pay more + attention to the speed with which regular expressions are matched, + and less to the speed with which regular expression objects are + constructed. Otherwise it has no detectable effect on the program + output. This currently has no effect for Boost.Regex. +

              -

              - collate -

              +

              + collate +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that character ranges of the form [a-b] - should be locale sensitive. This bit is on by default for POSIX-Basic regular expressions, - but can be unset to force ranges to be compared by code point only. -

              +

              + Specifies that character ranges of the form [a-b] + should be locale sensitive. This bit is on by default for POSIX-Basic regular + expressions, but can be unset to force ranges to be compared + by code point only. +

              -

              - newline_alt -

              +

              + newline_alt +

              -

              - No -

              +

              + No +

              -

              - Specifies that the \n character has the same effect as the alternation - operator |. Allows newline separated lists to be used as a list - of alternatives. This bit is already set, if you use the grep option. -

              +

              + Specifies that the \n character has the same effect as the alternation + operator |. Allows newline separated lists to be used as a list + of alternatives. This bit is already set, if you use the grep option. +

              -

              - no_char_classes -

              +

              + no_char_classes +

              -

              - No -

              +

              + No +

              -

              - When set then character classes such as [[:alnum:]] - are not allowed. -

              +

              + When set then character classes such as [[:alnum:]] + are not allowed. +

              -

              - no_escape_in_lists -

              +

              + no_escape_in_lists +

              -

              - No -

              +

              + No +

              -

              - When set this makes the escape character ordinary inside lists, - so that [\b] would match either '\' or 'b'. - This bit is on by default for POSIX-basic - regular expressions, but can be unset to force escapes to - be recognised inside lists. -

              +

              + When set this makes the escape character ordinary inside lists, + so that [\b] would match either '\' or 'b'. + This bit is on by default for POSIX-basic + regular expressions, but can be unset to force escapes + to be recognised inside lists. +

              -

              - no_intervals -

              +

              + no_intervals +

              -

              - No -

              +

              + No +

              -

              - When set then bounded repeats such as a{2,3} are not permitted. -

              +

              + When set then bounded repeats such as a{2,3} are not permitted. +

              -

              - bk_plus_qm -

              +

              + bk_plus_qm +

              -

              - No -

              +

              + No +

              -

              - When set then \? acts - as a zero-or-one repeat operator, and \+ - acts as a one-or-more repeat operator. -

              +

              + When set then \? + acts as a zero-or-one repeat operator, and \+ + acts as a one-or-more repeat operator. +

              -

              - bk_vbar -

              +

              + bk_vbar +

              -

              - No -

              +

              + No +

              -

              - When set then \| acts - as the alternation operator. -

              +

              + When set then \| + acts as the alternation operator. +

              -

              - no_except -

              +

              + no_except +

              -

              - No -

              +

              + No +

              -

              - Prevents basic_regex from throwing - an exception when an invalid expression is encountered. -

              +

              + Prevents basic_regex from throwing + an exception when an invalid expression is encountered. +

              -

              - save_subexpression_location -

              +

              + save_subexpression_location +

              -

              - No -

              +

              + No +

              -

              - When set then the locations of individual sub-expressions within - the original regular expression string can - be accessed via the subexpression() - member function of basic_regex. -

              +

              + When set then the locations of individual sub-expressions within + the original regular expression string can + be accessed via the subexpression() + member function of basic_regex. +

              @@ -406,7 +408,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html index 24f17a47..0a635776 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html @@ -2,8 +2,8 @@ Options for POSIX Extended Regular Expressions - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              Options for POSIX Extended Regular Expressions @@ -39,109 +39,109 @@ -

              - Element -

              +

              + Element +

              -

              - Standardized -

              +

              + Standardized +

              -

              - Effect when set -

              +

              + Effect when set +

              -

              - extended -

              +

              + extended +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the grammar recognized by the regular expression - engine is the same as that used by POSIX extended regular expressions - in IEEE Std 1003.1-2001, Portable Operating System Interface (POSIX - ), Base Definitions and Headers, Section 9, Regular Expressions - (FWD.1). -

              -

              - Refer to the POSIX - extended regular expression guide for more information. -

              -

              - In addition some perl-style escape sequences are supported (The - POSIX standard specifies that only "special" characters - may be escaped, all other escape sequences result in undefined - behavior). -

              +

              + Specifies that the grammar recognized by the regular expression + engine is the same as that used by POSIX extended regular expressions + in IEEE Std 1003.1-2001, Portable Operating System Interface + (POSIX ), Base Definitions and Headers, Section 9, Regular Expressions + (FWD.1). +

              +

              + Refer to the POSIX + extended regular expression guide for more information. +

              +

              + In addition some perl-style escape sequences are supported (The + POSIX standard specifies that only "special" characters + may be escaped, all other escape sequences result in undefined + behavior). +

              -

              - egrep -

              +

              + egrep +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the grammar recognized by the regular expression - engine is the same as that used by POSIX utility grep when given - the -E option in IEEE Std 1003.1-2001, Portable Operating System - Interface (POSIX ), Shells and Utilities, Section 4, Utilities, - grep (FWD.1). -

              -

              - That is to say, the same as POSIX - extended syntax, but with the newline character acting as - an alternation character in addition to "|". -

              +

              + Specifies that the grammar recognized by the regular expression + engine is the same as that used by POSIX utility grep when given + the -E option in IEEE Std 1003.1-2001, Portable Operating System + Interface (POSIX ), Shells and Utilities, Section 4, Utilities, + grep (FWD.1). +

              +

              + That is to say, the same as POSIX + extended syntax, but with the newline character acting + as an alternation character in addition to "|". +

              -

              - awk -

              +

              + awk +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the grammar recognized by the regular expression - engine is the same as that used by POSIX utility awk in IEEE Std - 1003.1-2001, Portable Operating System Interface (POSIX ), Shells - and Utilities, Section 4, awk (FWD.1). -

              -

              - That is to say: the same as POSIX - extended syntax, but with escape sequences in character - classes permitted. -

              -

              - In addition some perl-style escape sequences are supported (actually - the awk syntax only requires \a \b \t \v \f \n and \r to be recognised, - all other Perl-style escape sequences invoke undefined behavior - according to the POSIX standard, but are in fact recognised by - Boost.Regex). -

              +

              + Specifies that the grammar recognized by the regular expression + engine is the same as that used by POSIX utility awk in IEEE + Std 1003.1-2001, Portable Operating System Interface (POSIX ), + Shells and Utilities, Section 4, awk (FWD.1). +

              +

              + That is to say: the same as POSIX + extended syntax, but with escape sequences in character + classes permitted. +

              +

              + In addition some perl-style escape sequences are supported (actually + the awk syntax only requires \a \b \t \v \f \n and \r to be recognised, + all other Perl-style escape sequences invoke undefined behavior + according to the POSIX standard, but are in fact recognised by + Boost.Regex). +

              @@ -158,194 +158,194 @@ -

              - Element -

              +

              + Element +

              -

              - Standardized -

              +

              + Standardized +

              -

              - Effect when set -

              +

              + Effect when set +

              -

              - icase -

              +

              + icase +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that matching of regular expressions against a character - container sequence shall be performed without regard to case. -

              +

              + Specifies that matching of regular expressions against a character + container sequence shall be performed without regard to case. +

              -

              - nosubs -

              +

              + nosubs +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that when a regular expression is matched against a character - container sequence, then no sub-expression matches are to be stored - in the supplied match_results structure. -

              +

              + Specifies that when a regular expression is matched against a + character container sequence, then no sub-expression matches + are to be stored in the supplied match_results structure. +

              -

              - optimize -

              +

              + optimize +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the regular expression engine should pay more attention - to the speed with which regular expressions are matched, and less - to the speed with which regular expression objects are constructed. - Otherwise it has no detectable effect on the program output. This - currently has no effect for Boost.Regex. -

              +

              + Specifies that the regular expression engine should pay more + attention to the speed with which regular expressions are matched, + and less to the speed with which regular expression objects are + constructed. Otherwise it has no detectable effect on the program + output. This currently has no effect for Boost.Regex. +

              -

              - collate -

              +

              + collate +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that character ranges of the form [a-b] - should be locale sensitive. This bit is on by default for POSIX-Extended - regular expressions, but can be unset to force ranges to be compared - by code point only. -

              +

              + Specifies that character ranges of the form [a-b] + should be locale sensitive. This bit is on by default for POSIX-Extended + regular expressions, but can be unset to force ranges to be compared + by code point only. +

              -

              - newline_alt -

              +

              + newline_alt +

              -

              - No -

              +

              + No +

              -

              - Specifies that the \n character has the same effect as the alternation - operator |. Allows newline separated lists to be used as a list - of alternatives. -

              +

              + Specifies that the \n character has the same effect as the alternation + operator |. Allows newline separated lists to be used as a list + of alternatives. +

              -

              - no_escape_in_lists -

              +

              + no_escape_in_lists +

              -

              - No -

              +

              + No +

              -

              - When set this makes the escape character ordinary inside lists, - so that [\b] would match either '\' or 'b'. - This bit is on by default for POSIX-Extended regular expressions, - but can be unset to force escapes to be recognised inside lists. -

              +

              + When set this makes the escape character ordinary inside lists, + so that [\b] would match either '\' or 'b'. + This bit is on by default for POSIX-Extended regular expressions, + but can be unset to force escapes to be recognised inside lists. +

              -

              - no_bk_refs -

              +

              + no_bk_refs +

              -

              - No -

              +

              + No +

              -

              - When set then backreferences are disabled. This bit is on by default - for POSIX-Extended regular expressions, but can be unset to support - for backreferences on. -

              +

              + When set then backreferences are disabled. This bit is on by + default for POSIX-Extended regular expressions, but can be unset + to support for backreferences on. +

              -

              - no_except -

              +

              + no_except +

              -

              - No -

              +

              + No +

              -

              - Prevents basic_regex from throwing - an exception when an invalid expression is encountered. -

              +

              + Prevents basic_regex from throwing + an exception when an invalid expression is encountered. +

              -

              - save_subexpression_location -

              +

              + save_subexpression_location +

              -

              - No -

              +

              + No +

              -

              - When set then the locations of individual sub-expressions within - the original regular expression string can - be accessed via the subexpression() - member function of basic_regex. -

              +

              + When set then the locations of individual sub-expressions within + the original regular expression string can + be accessed via the subexpression() + member function of basic_regex. +

              @@ -361,7 +361,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html index 432bcc60..7a8cfff3 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html @@ -2,8 +2,8 @@ Options for Literal Strings - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              Options for Literal Strings @@ -39,36 +39,36 @@ -

              - Element -

              +

              + Element +

              -

              - Standardized -

              +

              + Standardized +

              -

              - Effect when set -

              +

              + Effect when set +

              -

              - literal -

              +

              + literal +

              -

              - Yes -

              +

              + Yes +

              -

              - Treat the string as a literal (no special characters). -

              +

              + Treat the string as a literal (no special characters). +

              @@ -83,59 +83,59 @@ -

              - Element -

              +

              + Element +

              -

              - Standardized -

              +

              + Standardized +

              -

              - Effect when set -

              +

              + Effect when set +

              -

              - icase -

              +

              + icase +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that matching of regular expressions against a character - container sequence shall be performed without regard to case. -

              +

              + Specifies that matching of regular expressions against a character + container sequence shall be performed without regard to case. +

              -

              - optimize -

              +

              + optimize +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the regular expression engine should pay more attention - to the speed with which regular expressions are matched, and less - to the speed with which regular expression objects are constructed. - Otherwise it has no detectable effect on the program output. This - currently has no effect for Boost.Regex. -

              +

              + Specifies that the regular expression engine should pay more + attention to the speed with which regular expressions are matched, + and less to the speed with which regular expression objects are + constructed. Otherwise it has no detectable effect on the program + output. This currently has no effect for Boost.Regex. +

              @@ -151,7 +151,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html index f0764f9c..09cf3377 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html @@ -2,8 +2,8 @@ Overview of syntax_option_type - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              Overview of syntax_option_type @@ -68,7 +68,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html index d37ec816..a6dfd485 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html @@ -2,8 +2,8 @@ Options for Perl Regular Expressions - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              Options for Perl Regular Expressions @@ -38,115 +38,115 @@ -

              - Element -

              +

              + Element +

              -

              - Standardized -

              +

              + Standardized +

              -

              - Effect when set -

              +

              + Effect when set +

              -

              - ECMAScript -

              +

              + ECMAScript +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the grammar recognized by the regular expression - engine uses its normal semantics: that is the same as that given - in the ECMA-262, ECMAScript Language Specification, Chapter 15 - part 10, RegExp (Regular Expression) Objects (FWD.1). -

              -

              - This is functionally identical to the Perl - regular expression syntax. -

              -

              - Boost.Regex also recognizes all of the perl-compatible (?...) extensions in this mode. -

              +

              + Specifies that the grammar recognized by the regular expression + engine uses its normal semantics: that is the same as that given + in the ECMA-262, ECMAScript Language Specification, Chapter 15 + part 10, RegExp (Regular Expression) Objects (FWD.1). +

              +

              + This is functionally identical to the Perl + regular expression syntax. +

              +

              + Boost.Regex also recognizes all of the perl-compatible (?...) extensions in this mode. +

              -

              - perl -

              +

              + perl +

              -

              - No -

              +

              + No +

              -

              - As above. -

              +

              + As above. +

              -

              - normal -

              +

              + normal +

              -

              - No -

              +

              + No +

              -

              - As above. -

              +

              + As above. +

              -

              - JavaScript -

              +

              + JavaScript +

              -

              - No -

              +

              + No +

              -

              - As above. -

              +

              + As above. +

              -

              - JScript -

              +

              + JScript +

              -

              - No -

              +

              + No +

              -

              - As above. -

              +

              + As above. +

              @@ -162,250 +162,250 @@ -

              - Element -

              +

              + Element +

              -

              - Standardized -

              +

              + Standardized +

              -

              - Effect when set -

              +

              + Effect when set +

              -

              - icase -

              +

              + icase +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that matching of regular expressions against a character - container sequence shall be performed without regard to case. -

              +

              + Specifies that matching of regular expressions against a character + container sequence shall be performed without regard to case. +

              -

              - nosubs -

              +

              + nosubs +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that when a regular expression is matched against a character - container sequence, then no sub-expression matches are to be stored - in the supplied match_results structure. -

              +

              + Specifies that when a regular expression is matched against a + character container sequence, then no sub-expression matches + are to be stored in the supplied match_results structure. +

              -

              - optimize -

              +

              + optimize +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that the regular expression engine should pay more attention - to the speed with which regular expressions are matched, and less - to the speed with which regular expression objects are constructed. - Otherwise it has no detectable effect on the program output. This - currently has no effect for Boost.Regex. -

              +

              + Specifies that the regular expression engine should pay more + attention to the speed with which regular expressions are matched, + and less to the speed with which regular expression objects are + constructed. Otherwise it has no detectable effect on the program + output. This currently has no effect for Boost.Regex. +

              -

              - collate -

              +

              + collate +

              -

              - Yes -

              +

              + Yes +

              -

              - Specifies that character ranges of the form [a-b] - should be locale sensitive. -

              +

              + Specifies that character ranges of the form [a-b] + should be locale sensitive. +

              -

              - newline_alt -

              +

              + newline_alt +

              -

              - No -

              +

              + No +

              -

              - Specifies that the \n character has the same effect as the alternation - operator |. Allows newline separated lists to be used as a list - of alternatives. -

              +

              + Specifies that the \n character has the same effect as the alternation + operator |. Allows newline separated lists to be used as a list + of alternatives. +

              -

              - no_except -

              +

              + no_except +

              -

              - No -

              +

              + No +

              -

              - Prevents basic_regex from throwing - an exception when an invalid expression is encountered. -

              +

              + Prevents basic_regex from throwing + an exception when an invalid expression is encountered. +

              -

              - no_mod_m -

              +

              + no_mod_m +

              -

              - No -

              +

              + No +

              -

              - Normally Boost.Regex behaves as if the Perl m-modifier is on: so - the assertions ^ and $ match after and before embedded newlines - respectively, setting this flags is equivalent to prefixing the - expression with (?-m). -

              +

              + Normally Boost.Regex behaves as if the Perl m-modifier is on: + so the assertions ^ and $ match after and before embedded newlines + respectively, setting this flags is equivalent to prefixing the + expression with (?-m). +

              -

              - no_mod_s -

              +

              + no_mod_s +

              -

              - No -

              +

              + No +

              -

              - Normally whether Boost.Regex will match "." against a - newline character is determined by the match flag match_dot_not_newline. Specifying - this flag is equivalent to prefixing the expression with (?-s) and therefore causes "." - not to match a newline character regardless of whether match_not_dot_newline is set - in the match flags. -

              +

              + Normally whether Boost.Regex will match "." against + a newline character is determined by the match flag match_dot_not_newline. Specifying + this flag is equivalent to prefixing the expression with (?-s) and therefore causes "." + not to match a newline character regardless of whether match_not_dot_newline is set + in the match flags. +

              -

              - mod_s -

              +

              + mod_s +

              -

              - No -

              +

              + No +

              -

              - Normally whether Boost.Regex will match "." against a - newline character is determined by the match flag match_dot_not_newline. Specifying - this flag is equivalent to prefixing the expression with (?s) and therefore causes "." - to match a newline character regardless of whether match_not_dot_newline is set - in the match flags. -

              +

              + Normally whether Boost.Regex will match "." against + a newline character is determined by the match flag match_dot_not_newline. Specifying + this flag is equivalent to prefixing the expression with (?s) and therefore causes "." + to match a newline character regardless of whether match_not_dot_newline is set + in the match flags. +

              -

              - mod_x -

              +

              + mod_x +

              -

              - No -

              +

              + No +

              -

              - Turns on the perl x-modifier: causes unescaped whitespace in the - expression to be ignored. -

              +

              + Turns on the perl x-modifier: causes unescaped whitespace in + the expression to be ignored. +

              -

              - no_empty_expressions -

              +

              + no_empty_expressions +

              -

              - No -

              +

              + No +

              -

              - When set then empty expressions/alternatives are prohibited. -

              +

              + When set then empty expressions/alternatives are prohibited. +

              -

              - save_subexpression_location -

              +

              + save_subexpression_location +

              -

              - No -

              +

              + No +

              -

              - When set then the locations of individual sub-expressions within - the original regular expression string can - be accessed via the subexpression() - member function of basic_regex. -

              +

              + When set then the locations of individual sub-expressions within + the original regular expression string can + be accessed via the subexpression() + member function of basic_regex. +

              @@ -421,7 +421,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html index 2a6b3a85..715a8ca6 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html @@ -2,8 +2,8 @@ syntax_option_type Synopsis - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              syntax_option_type Synopsis @@ -96,7 +96,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax.html b/doc/html/boost_regex/syntax.html index ad674f08..c8d9f767 100644 --- a/doc/html/boost_regex/syntax.html +++ b/doc/html/boost_regex/syntax.html @@ -2,8 +2,8 @@ Regular Expression Syntax - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +
              @@ -61,19 +61,19 @@ There are three main syntax options available, depending upon how you construct the regular expression object:

              -

              -

              -

              -

              - +

              + POSIX Extended Syntax

              @@ -56,25 +54,25 @@

              .[{()\*+?|^$
              - + Wildcard:

              The single character '.' when used outside of a character set will match any single character except:

              -
                -
              • - The NULL character when the flag match_no_dot_null - is passed to the matching algorithms. -
              • -
              • - The newline character when the flag match_not_dot_newline - is passed to the matching algorithms. -
              • +
                  +
                • + The NULL character when the flag match_no_dot_null + is passed to the matching algorithms. +
                • +
                • + The newline character when the flag match_not_dot_newline + is passed to the matching algorithms. +
                - + Anchors:

                @@ -86,7 +84,7 @@ of an expression, or the last character of a sub-expression.

                - + Marked sub-expressions:
                @@ -98,7 +96,7 @@ to by a back-reference.

                - + Repeats:

                @@ -184,7 +182,7 @@ cab operator to be applied to.

                - + Back references:

                @@ -205,7 +203,7 @@ cab

              - +
              [Caution][Caution] Caution

              @@ -214,7 +212,7 @@ cab

              - + Alternation

              @@ -227,7 +225,7 @@ cab will match either of "abd" or "abef".

              - + Character sets:
              @@ -240,7 +238,7 @@ cab A bracket expression may contain any combination of the following:

              - + Single characters:
              @@ -249,7 +247,7 @@ cab or 'c'.

              - + Character ranges:
              @@ -265,7 +263,7 @@ cab the code points of the characters only.

              - + Negation:

              @@ -274,7 +272,7 @@ cab range a-c.

              - + Character classes:
              @@ -284,7 +282,7 @@ cab character class names.

              - + Collating Elements:
              @@ -312,7 +310,7 @@ cab matches a NUL character.

              - + Equivalence classes:
              @@ -329,7 +327,7 @@ cab or even all locales on one platform.

              - + Combinations:

              @@ -337,33 +335,33 @@ cab [[:digit:]a-c[.NUL.]].

              - + Escapes

              The POSIX standard defines no escape sequences for POSIX-Extended regular expressions, except that:

              -
                -
              • - Any special character preceded by an escape shall match itself. -
              • -
              • - The effect of any ordinary character being preceded by an escape is undefined. -
              • -
              • - An escape inside a character class declaration shall match itself: in other - words the escape character is not "special" inside a character - class declaration; so [\^] - will match either a literal '\' or a '^'. -
              • +
                  +
                • + Any special character preceded by an escape shall match itself. +
                • +
                • + The effect of any ordinary character being preceded by an escape is undefined. +
                • +
                • + An escape inside a character class declaration shall match itself: in + other words the escape character is not "special" inside a + character class declaration; so [\^] + will match either a literal '\' or a '^'. +

                However, that's rather restrictive, so the following standard-compatible extensions are also supported by Boost.Regex:

                - + Escapes matching a specific character
                @@ -377,182 +375,182 @@ cab -

                - Escape -

                +

                + Escape +

                -

                - Character -

                +

                + Character +

                -

                - \a -

                +

                + \a +

                -

                - '\a' -

                +

                + '\a' +

                -

                - \e -

                +

                + \e +

                -

                - 0x1B -

                +

                + 0x1B +

                -

                - \f -

                +

                + \f +

                -

                - \f -

                +

                + \f +

                -

                - \n -

                +

                + \n +

                -

                - \n -

                +

                + \n +

                -

                - \r -

                +

                + \r +

                -

                - \r -

                +

                + \r +

                -

                - \t -

                +

                + \t +

                -

                - \t -

                +

                + \t +

                -

                - \v -

                +

                + \v +

                -

                - \v -

                +

                + \v +

                -

                - \b -

                +

                + \b +

                -

                - \b (but only inside a character class declaration). -

                +

                + \b (but only inside a character class declaration). +

                -

                - \cX -

                +

                + \cX +

                -

                - An ASCII escape sequence - the character whose code point is X % - 32 -

                +

                + An ASCII escape sequence - the character whose code point is X + % 32 +

                -

                - \xdd -

                +

                + \xdd +

                -

                - A hexadecimal escape sequence - matches the single character whose - code point is 0xdd. -

                +

                + A hexadecimal escape sequence - matches the single character whose + code point is 0xdd. +

                -

                - \x{dddd} -

                +

                + \x{dddd} +

                -

                - A hexadecimal escape sequence - matches the single character whose - code point is 0xdddd. -

                +

                + A hexadecimal escape sequence - matches the single character whose + code point is 0xdddd. +

                -

                - \0ddd -

                +

                + \0ddd +

                -

                - An octal escape sequence - matches the single character whose code - point is 0ddd. -

                +

                + An octal escape sequence - matches the single character whose code + point is 0ddd. +

                -

                - \N{Name} -

                +

                + \N{Name} +

                -

                - Matches the single character which has the symbolic name name. For - example \\N{newline} matches the single character \n. -

                +

                + Matches the single character which has the symbolic name name. + For example \\N{newline} matches the single character \n. +

              - + "Single character" character classes:
              @@ -572,141 +570,141 @@ cab -

              - Escape sequence -

              +

              + Escape sequence +

              -

              - Equivalent to -

              +

              + Equivalent to +

              -

              - \d -

              +

              + \d +

              -

              - [[:digit:]] -

              +

              + [[:digit:]] +

              -

              - \l -

              +

              + \l +

              -

              - [[:lower:]] -

              +

              + [[:lower:]] +

              -

              - \s -

              +

              + \s +

              -

              - [[:space:]] -

              +

              + [[:space:]] +

              -

              - \u -

              +

              + \u +

              -

              - [[:upper:]] -

              +

              + [[:upper:]] +

              -

              - \w -

              +

              + \w +

              -

              - [[:word:]] -

              +

              + [[:word:]] +

              -

              - \D -

              +

              + \D +

              -

              - [^[:digit:]] -

              +

              + [^[:digit:]] +

              -

              - \L -

              +

              + \L +

              -

              - [^[:lower:]] -

              +

              + [^[:lower:]] +

              -

              - \S -

              +

              + \S +

              -

              - [^[:space:]] -

              +

              + [^[:space:]] +

              -

              - \U -

              +

              + \U +

              -

              - [^[:upper:]] -

              +

              + [^[:upper:]] +

              -

              - \W -

              +

              + \W +

              -

              - [^[:word:]] -

              +

              + [^[:word:]] +

            - + Character Properties
            @@ -722,88 +720,88 @@ cab -

            - Form -

            +

            + Form +

            -

            - Description -

            +

            + Description +

            -

            - Equivalent character set form -

            +

            + Equivalent character set form +

            -

            - \pX -

            +

            + \pX +

            -

            - Matches any character that has the property X. -

            +

            + Matches any character that has the property X. +

            -

            - [[:X:]] -

            +

            + [[:X:]] +

            -

            - \p{Name} -

            +

            + \p{Name} +

            -

            - Matches any character that has the property Name. -

            +

            + Matches any character that has the property Name. +

            -

            - [[:Name:]] -

            +

            + [[:Name:]] +

            -

            - \PX -

            +

            + \PX +

            -

            - Matches any character that does not have the property X. -

            +

            + Matches any character that does not have the property X. +

            -

            - [^[:X:]] -

            +

            + [^[:X:]] +

            -

            - \P{Name} -

            +

            + \P{Name} +

            -

            - Matches any character that does not have the property Name. -

            +

            + Matches any character that does not have the property Name. +

            -

            - [^[:Name:]] -

            +

            + [^[:Name:]] +

            @@ -813,7 +811,7 @@ cab matches any "digit" character, as does \p{digit}.

            - + Word Boundaries

            @@ -826,69 +824,69 @@ cab -

            - Escape -

            +

            + Escape +

            -

            - Meaning -

            +

            + Meaning +

            -

            - \< -

            +

            + \< +

            -

            - Matches the start of a word. -

            +

            + Matches the start of a word. +

            -

            - \> -

            +

            + \> +

            -

            - Matches the end of a word. -

            +

            + Matches the end of a word. +

            -

            - \b -

            +

            + \b +

            -

            - Matches a word boundary (the start or end of a word). -

            +

            + Matches a word boundary (the start or end of a word). +

            -

            - \B -

            +

            + \B +

            -

            - Matches only when not at a word boundary. -

            +

            + Matches only when not at a word boundary. +

          - + Buffer boundaries
          @@ -904,82 +902,82 @@ cab -

          - Escape -

          +

          + Escape +

          -

          - Meaning -

          +

          + Meaning +

          -

          - \` -

          +

          + \` +

          -

          - Matches at the start of a buffer only. -

          +

          + Matches at the start of a buffer only. +

          -

          - \' -

          +

          + \' +

          -

          - Matches at the end of a buffer only. -

          +

          + Matches at the end of a buffer only. +

          -

          - \A -

          +

          + \A +

          -

          - Matches at the start of a buffer only (the same as \`). -

          +

          + Matches at the start of a buffer only (the same as \`). +

          -

          - \z -

          +

          + \z +

          -

          - Matches at the end of a buffer only (the same as \'). -

          +

          + Matches at the end of a buffer only (the same as \'). +

          -

          - \Z -

          +

          + \Z +

          -

          - Matches an optional sequence of newlines at the end of a buffer: - equivalent to the regular expression \n*\z -

          +

          + Matches an optional sequence of newlines at the end of a buffer: + equivalent to the regular expression \n*\z +

          - + Continuation Escape
          @@ -991,7 +989,7 @@ cab match to start where the last one ended.

          - + Quoting escape
          @@ -1005,7 +1003,7 @@ cab \*+aaa
          - + Unicode escapes
          @@ -1016,47 +1014,47 @@ cab -

          - Escape -

          +

          + Escape +

          -

          - Meaning -

          +

          + Meaning +

          -

          - \C -

          +

          + \C +

          -

          - Matches a single code point: in Boost regex this has exactly the - same effect as a "." operator. -

          +

          + Matches a single code point: in Boost regex this has exactly the + same effect as a "." operator. +

          -

          - \X -

          +

          + \X +

          -

          - Matches a combining character sequence: that is any non-combining - character followed by a sequence of zero or more combining characters. -

          +

          + Matches a combining character sequence: that is any non-combining + character followed by a sequence of zero or more combining characters. +

          - + Any other escape
          @@ -1065,43 +1063,44 @@ cab \@ matches a literal '@'.

          - + Operator precedence

          The order of precedence for of operators is as follows:

          -
            -
          1. - Collation-related bracket symbols [==] - [::] [..] -
          2. -
          3. - Escaped characters \ -
          4. -
          5. - Character set (bracket expression) [] -
          6. -
          7. - Grouping () -
          8. -
          9. - Single-character-ERE duplication * - + ? {m,n} -
          10. -
          11. - Concatenation -
          12. -
          13. - Anchoring ^$ -
          14. -
          15. - Alternation | -
          16. +
              +
            1. + Collation-related bracket symbols [==] + [::] [..] +
            2. +
            3. + Escaped characters \ +
            4. +
            5. + Character set (bracket expression) [] +
            6. +
            7. + Grouping () +
            8. +
            9. + Single-character-ERE duplication * + + ? + {m,n} +
            10. +
            11. + Concatenation +
            12. +
            13. + Anchoring ^$ +
            14. +
            15. + Alternation | +
            - + What Gets Matched
            @@ -1111,11 +1110,11 @@ cab rule.

            - + Variations

            - + Egrep

            @@ -1136,7 +1135,7 @@ cab used with the -E option.

            - + awk

            @@ -1150,7 +1149,7 @@ cab these by default anyway.

            - + Options

            @@ -1163,7 +1162,7 @@ cab modify how the case and locale sensitivity are to be applied.

            - + References

            @@ -1192,7 +1191,7 @@ cab


            -PrevUpHomeNext +PrevUpHomeNext
            diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 0b45b993..756d9942 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -2,8 +2,8 @@ POSIX Basic Regular Expression Syntax - - + + @@ -20,15 +20,15 @@
            -PrevUpHomeNext +PrevUpHomeNext
            -
            +

            - + Synopsis

            @@ -42,10 +42,8 @@ // e2 a case insensitive POSIX-Basic expression: boost::regex e2(my_expression, boost::regex::basic|boost::regex::icase); -

            -

            -

            - +

            + POSIX Basic Syntax

            @@ -55,25 +53,25 @@

            .[\*^$
            - + Wildcard:

            The single character '.' when used outside of a character set will match any single character except:

            -
              -
            • - The NULL character when the flag match_no_dot_null - is passed to the matching algorithms. -
            • -
            • - The newline character when the flag match_not_dot_newline - is passed to the matching algorithms. -
            • +
                +
              • + The NULL character when the flag match_no_dot_null + is passed to the matching algorithms. +
              • +
              • + The newline character when the flag match_not_dot_newline + is passed to the matching algorithms. +
              - + Anchors:

              @@ -85,7 +83,7 @@ of an expression, or the last character of a sub-expression.

              - + Marked sub-expressions:
              @@ -97,7 +95,7 @@ by a back-reference.

              - + Repeats:

              @@ -155,7 +153,7 @@ aaaa to.

              - + Back references:

              @@ -173,7 +171,7 @@ aaaa

              aaabba
              - + Character sets:
              @@ -186,7 +184,7 @@ aaaa A bracket expression may contain any combination of the following:

              - + Single characters:
              @@ -195,7 +193,7 @@ aaaa or 'c'.

              - + Character ranges:
              @@ -211,7 +209,7 @@ aaaa of the characters only.

              - + Negation:

              @@ -220,7 +218,7 @@ aaaa range a-c.

              - + Character classes:
              @@ -230,7 +228,7 @@ aaaa character class names.

              - + Collating Elements:
              @@ -259,7 +257,7 @@ aaaa element names.

              - + Equivalence classes:
              @@ -276,7 +274,7 @@ aaaa or even all locales on one platform.

              - + Combinations:

              @@ -284,7 +282,7 @@ aaaa [[:digit:]a-c[.NUL.]].

              - + Escapes

              @@ -299,7 +297,7 @@ aaaa will match either a literal '\' or a '^'.

              - + What Gets Matched

              @@ -309,13 +307,11 @@ aaaa rule.

              - + Variations

              -

              -

              -
              - +
              + Grep

              @@ -333,7 +329,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

              - + emacs

              @@ -347,75 +343,75 @@ aaaa -

              - Character -

              +

              + Character +

              -

              - Description -

              +

              + Description +

              -

              - + -

              +

              + + +

              -

              - repeats the preceding atom one or more times. -

              +

              + repeats the preceding atom one or more times. +

              -

              - ? -

              +

              + ? +

              -

              - repeats the preceding atom zero or one times. -

              +

              + repeats the preceding atom zero or one times. +

              -

              - *? -

              +

              + *? +

              -

              - A non-greedy version of *. -

              +

              + A non-greedy version of *. +

              -

              - +? -

              +

              + +? +

              -

              - A non-greedy version of +. -

              +

              + A non-greedy version of +. +

              -

              - ?? -

              +

              + ?? +

              -

              - A non-greedy version of ?. -

              +

              + A non-greedy version of ?. +

              @@ -430,176 +426,176 @@ aaaa -

              - Escape -

              +

              + Escape +

              -

              - Description -

              +

              + Description +

              -

              - \| -

              +

              + \| +

              -

              - specifies an alternative. -

              +

              + specifies an alternative. +

              -

              - \(?: ... ) -

              +

              + \(?: ... ) +

              -

              - is a non-marking grouping construct - allows you to lexically group - something without spitting out an extra sub-expression. -

              +

              + is a non-marking grouping construct - allows you to lexically group + something without spitting out an extra sub-expression. +

              -

              - \w -

              +

              + \w +

              -

              - matches any word character. -

              +

              + matches any word character. +

              -

              - \W -

              +

              + \W +

              -

              - matches any non-word character. -

              +

              + matches any non-word character. +

              -

              - \sx -

              +

              + \sx +

              -

              - matches any character in the syntax group x, the following emacs - groupings are supported: 's', ' ', '_', 'w', '.', ')', '(', '"', - '\'', '>' and '<'. Refer to the emacs docs for details. -

              +

              + matches any character in the syntax group x, the following emacs + groupings are supported: 's', ' ', '_', 'w', '.', ')', '(', '"', + '\'', '>' and '<'. Refer to the emacs docs for details. +

              -

              - \Sx -

              +

              + \Sx +

              -

              - matches any character not in the syntax grouping x. -

              +

              + matches any character not in the syntax grouping x. +

              -

              - \c and \C -

              +

              + \c and \C +

              -

              - These are not supported. -

              +

              + These are not supported. +

              -

              - \` -

              +

              + \` +

              -

              - matches zero characters only at the start of a buffer (or string - being matched). -

              +

              + matches zero characters only at the start of a buffer (or string + being matched). +

              -

              - \' -

              +

              + \' +

              -

              - matches zero characters only at the end of a buffer (or string being - matched). -

              +

              + matches zero characters only at the end of a buffer (or string + being matched). +

              -

              - \b -

              +

              + \b +

              -

              - matches zero characters at a word boundary. -

              +

              + matches zero characters at a word boundary. +

              -

              - \B -

              +

              + \B +

              -

              - matches zero characters, not at a word boundary. -

              +

              + matches zero characters, not at a word boundary. +

              -

              - \< -

              +

              + \< +

              -

              - matches zero characters only at the start of a word. -

              +

              + matches zero characters only at the start of a word. +

              -

              - \> -

              +

              + \> +

              -

              - matches zero characters only at the end of a word. -

              +

              + matches zero characters only at the end of a word. +

              @@ -613,7 +609,7 @@ aaaa leftmost-longest rule.

              - + Options

              @@ -627,7 +623,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

              - + References

              @@ -654,7 +650,7 @@ aaaa


              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index 947d2789..b6878983 100644 --- a/doc/html/boost_regex/syntax/character_classes.html +++ b/doc/html/boost_regex/syntax/character_classes.html @@ -2,8 +2,8 @@ Character Class Names - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              Character Class Names @@ -44,7 +44,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html b/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html index 980dc75b..5aa2d348 100644 --- a/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html +++ b/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html @@ -2,8 +2,8 @@ Character classes that are supported by Unicode Regular Expressions - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              Character classes that are supported by Unicode Regular Expressions @@ -40,492 +40,486 @@ -

              - Short Name -

              +

              + Short Name +

              -

              - Long Name -

              +

              + Long Name +

              -

              -

              -

              - ASCII -

              +

              + ASCII +

              -

              -

              -

              - Any -

              +

              + Any +

              -

              -

              -

              - Assigned -

              +

              + Assigned +

              -

              - C* -

              +

              + C* +

              -

              - Other -

              +

              + Other +

              -

              - Cc -

              +

              + Cc +

              -

              - Control -

              +

              + Control +

              -

              - Cf -

              +

              + Cf +

              -

              - Format -

              +

              + Format +

              -

              - Cn -

              +

              + Cn +

              -

              - Not Assigned -

              +

              + Not Assigned +

              -

              - Co -

              +

              + Co +

              -

              - Private Use -

              +

              + Private Use +

              -

              - Cs -

              +

              + Cs +

              -

              - Surrogate -

              +

              + Surrogate +

              -

              - L* -

              +

              + L* +

              -

              - Letter -

              +

              + Letter +

              -

              - Ll -

              +

              + Ll +

              -

              - Lowercase Letter -

              +

              + Lowercase Letter +

              -

              - Lm -

              +

              + Lm +

              -

              - Modifier Letter -

              +

              + Modifier Letter +

              -

              - Lo -

              +

              + Lo +

              -

              - Other Letter -

              +

              + Other Letter +

              -

              - Lt -

              +

              + Lt +

              -

              - Titlecase -

              +

              + Titlecase +

              -

              - Lu -

              +

              + Lu +

              -

              - Uppercase Letter -

              +

              + Uppercase Letter +

              -

              - M* -

              +

              + M* +

              -

              - Mark -

              +

              + Mark +

              -

              - Mc -

              +

              + Mc +

              -

              - Spacing Combining Mark -

              +

              + Spacing Combining Mark +

              -

              - Me -

              +

              + Me +

              -

              - Enclosing Mark -

              +

              + Enclosing Mark +

              -

              - Mn -

              +

              + Mn +

              -

              - Non-Spacing Mark -

              +

              + Non-Spacing Mark +

              -

              - N* -

              +

              + N* +

              -

              - Number -

              +

              + Number +

              -

              - Nd -

              +

              + Nd +

              -

              - Decimal Digit Number -

              +

              + Decimal Digit Number +

              -

              - Nl -

              +

              + Nl +

              -

              - Letter Number -

              +

              + Letter Number +

              -

              - No -

              +

              + No +

              -

              - Other Number -

              +

              + Other Number +

              -

              - P* -

              +

              + P* +

              -

              - Punctuation -

              +

              + Punctuation +

              -

              - Pc -

              +

              + Pc +

              -

              - Connector Punctuation -

              +

              + Connector Punctuation +

              -

              - Pd -

              +

              + Pd +

              -

              - Dash Punctuation -

              +

              + Dash Punctuation +

              -

              - Pe -

              +

              + Pe +

              -

              - Close Punctuation -

              +

              + Close Punctuation +

              -

              - Pf -

              +

              + Pf +

              -

              - Final Punctuation -

              +

              + Final Punctuation +

              -

              - Pi -

              +

              + Pi +

              -

              - Initial Punctuation -

              +

              + Initial Punctuation +

              -

              - Po -

              +

              + Po +

              -

              - Other Punctuation -

              +

              + Other Punctuation +

              -

              - Ps -

              +

              + Ps +

              -

              - Open Punctuation -

              +

              + Open Punctuation +

              -

              - S* -

              +

              + S* +

              -

              - Symbol -

              +

              + Symbol +

              -

              - Sc -

              +

              + Sc +

              -

              - Currency Symbol -

              +

              + Currency Symbol +

              -

              - Sk -

              +

              + Sk +

              -

              - Modifier Symbol -

              +

              + Modifier Symbol +

              -

              - Sm -

              +

              + Sm +

              -

              - Math Symbol -

              +

              + Math Symbol +

              -

              - So -

              +

              + So +

              -

              - Other Symbol -

              +

              + Other Symbol +

              -

              - Z* -

              +

              + Z* +

              -

              - Separator -

              +

              + Separator +

              -

              - Zl -

              +

              + Zl +

              -

              - Line Separator -

              +

              + Line Separator +

              -

              - Zp -

              +

              + Zp +

              -

              - Paragraph Separator -

              +

              + Paragraph Separator +

              -

              - Zs -

              +

              + Zs +

              -

              - Space Separator -

              +

              + Space Separator +

              @@ -541,7 +535,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax/character_classes/std_char_clases.html b/doc/html/boost_regex/syntax/character_classes/std_char_clases.html index 8b65197d..e5bc8d9c 100644 --- a/doc/html/boost_regex/syntax/character_classes/std_char_clases.html +++ b/doc/html/boost_regex/syntax/character_classes/std_char_clases.html @@ -2,8 +2,8 @@ Character Classes that are Always Supported - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              Character Classes that are Always Supported @@ -38,343 +38,343 @@ -

              - Name -

              +

              + Name +

              -

              - POSIX-standard name -

              +

              + POSIX-standard name +

              -

              - Description -

              +

              + Description +

              -

              - alnum -

              +

              + alnum +

              -

              - Yes -

              +

              + Yes +

              -

              - Any alpha-numeric character. -

              +

              + Any alpha-numeric character. +

              -

              - alpha -

              +

              + alpha +

              -

              - Yes -

              +

              + Yes +

              -

              - Any alphabetic character. -

              +

              + Any alphabetic character. +

              -

              - blank -

              +

              + blank +

              -

              - Yes -

              +

              + Yes +

              -

              - Any whitespace character that is not a line separator. -

              +

              + Any whitespace character that is not a line separator. +

              -

              - cntrl -

              +

              + cntrl +

              -

              - Yes -

              +

              + Yes +

              -

              - Any control character. -

              +

              + Any control character. +

              -

              - d -

              +

              + d +

              -

              - No -

              +

              + No +

              -

              - Any decimal digit -

              +

              + Any decimal digit +

              -

              - digit -

              +

              + digit +

              -

              - Yes -

              +

              + Yes +

              -

              - Any decimal digit. -

              +

              + Any decimal digit. +

              -

              - graph -

              +

              + graph +

              -

              - Yes -

              +

              + Yes +

              -

              - Any graphical character. -

              +

              + Any graphical character. +

              -

              - l -

              +

              + l +

              -

              - No -

              +

              + No +

              -

              - Any lower case character. -

              +

              + Any lower case character. +

              -

              - lower -

              +

              + lower +

              -

              - Yes -

              +

              + Yes +

              -

              - Any lower case character. -

              +

              + Any lower case character. +

              -

              - print -

              +

              + print +

              -

              - Yes -

              +

              + Yes +

              -

              - Any printable character. -

              +

              + Any printable character. +

              -

              - punct -

              +

              + punct +

              -

              - Yes -

              +

              + Yes +

              -

              - Any punctuation character. -

              +

              + Any punctuation character. +

              -

              - s -

              +

              + s +

              -

              - No -

              +

              + No +

              -

              - Any whitespace character. -

              +

              + Any whitespace character. +

              -

              - space -

              +

              + space +

              -

              - Yes -

              +

              + Yes +

              -

              - Any whitespace character. -

              +

              + Any whitespace character. +

              -

              - unicode -

              +

              + unicode +

              -

              - No -

              +

              + No +

              -

              - Any extended character whose code point is above 255 in value. -

              +

              + Any extended character whose code point is above 255 in value. +

              -

              - u -

              +

              + u +

              -

              - No -

              +

              + No +

              -

              - Any upper case character. -

              +

              + Any upper case character. +

              -

              - upper -

              +

              + upper +

              -

              - Yes -

              +

              + Yes +

              -

              - Any upper case character. -

              +

              + Any upper case character. +

              -

              - w -

              +

              + w +

              -

              - No -

              +

              + No +

              -

              - Any word character (alphanumeric characters plus the underscore). -

              +

              + Any word character (alphanumeric characters plus the underscore). +

              -

              - word -

              +

              + word +

              -

              - No -

              +

              + No +

              -

              - Any word character (alphanumeric characters plus the underscore). -

              +

              + Any word character (alphanumeric characters plus the underscore). +

              -

              - xdigit -

              +

              + xdigit +

              -

              - Yes -

              +

              + Yes +

              -

              - Any hexadecimal digit character. -

              +

              + Any hexadecimal digit character. +

              @@ -390,7 +390,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index c8f6f937..846399b3 100644 --- a/doc/html/boost_regex/syntax/collating_names.html +++ b/doc/html/boost_regex/syntax/collating_names.html @@ -2,8 +2,8 @@ Collating Names - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +
              @@ -44,7 +44,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax/collating_names/digraphs.html b/doc/html/boost_regex/syntax/collating_names/digraphs.html index 62866317..fce83f1e 100644 --- a/doc/html/boost_regex/syntax/collating_names/digraphs.html +++ b/doc/html/boost_regex/syntax/collating_names/digraphs.html @@ -2,8 +2,8 @@ Digraphs - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +
              @@ -55,7 +55,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax/collating_names/named_unicode.html b/doc/html/boost_regex/syntax/collating_names/named_unicode.html index a73b2fb7..29a0318a 100644 --- a/doc/html/boost_regex/syntax/collating_names/named_unicode.html +++ b/doc/html/boost_regex/syntax/collating_names/named_unicode.html @@ -2,8 +2,8 @@ Named Unicode Characters - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              Named Unicode Characters @@ -48,7 +48,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html b/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html index 0846bf92..af27d244 100644 --- a/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html +++ b/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html @@ -2,8 +2,8 @@ POSIX Symbolic Names - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              POSIX Symbolic Names @@ -43,927 +43,927 @@ -

              - Name -

              +

              + Name +

              -

              - Character -

              +

              + Character +

              -

              - NUL -

              +

              + NUL +

              -

              - \x00 -

              +

              + \x00 +

              -

              - SOH -

              +

              + SOH +

              -

              - \x01 -

              +

              + \x01 +

              -

              - STX -

              +

              + STX +

              -

              - \x02 -

              +

              + \x02 +

              -

              - ETX -

              +

              + ETX +

              -

              - \x03 -

              +

              + \x03 +

              -

              - EOT -

              +

              + EOT +

              -

              - \x04 -

              +

              + \x04 +

              -

              - ENQ -

              +

              + ENQ +

              -

              - \x05 -

              +

              + \x05 +

              -

              - ACK -

              +

              + ACK +

              -

              - \x06 -

              +

              + \x06 +

              -

              - alert -

              +

              + alert +

              -

              - \x07 -

              +

              + \x07 +

              -

              - backspace -

              +

              + backspace +

              -

              - \x08 -

              +

              + \x08 +

              -

              - tab -

              +

              + tab +

              -

              - \t -

              +

              + \t +

              -

              - newline -

              +

              + newline +

              -

              - \n -

              +

              + \n +

              -

              - vertical-tab -

              +

              + vertical-tab +

              -

              - \v -

              +

              + \v +

              -

              - form-feed -

              +

              + form-feed +

              -

              - \f -

              +

              + \f +

              -

              - carriage-return -

              +

              + carriage-return +

              -

              - \r -

              +

              + \r +

              -

              - SO -

              +

              + SO +

              -

              - \xE -

              +

              + \xE +

              -

              - SI -

              +

              + SI +

              -

              - \xF -

              +

              + \xF +

              -

              - DLE -

              +

              + DLE +

              -

              - \x10 -

              +

              + \x10 +

              -

              - DC1 -

              +

              + DC1 +

              -

              - \x11 -

              +

              + \x11 +

              -

              - DC2 -

              +

              + DC2 +

              -

              - \x12 -

              +

              + \x12 +

              -

              - DC3 -

              +

              + DC3 +

              -

              - \x13 -

              +

              + \x13 +

              -

              - DC4 -

              +

              + DC4 +

              -

              - \x14 -

              +

              + \x14 +

              -

              - NAK -

              +

              + NAK +

              -

              - \x15 -

              +

              + \x15 +

              -

              - SYN -

              +

              + SYN +

              -

              - \x16 -

              +

              + \x16 +

              -

              - ETB -

              +

              + ETB +

              -

              - \x17 -

              +

              + \x17 +

              -

              - CAN -

              +

              + CAN +

              -

              - \x18 -

              +

              + \x18 +

              -

              - EM -

              +

              + EM +

              -

              - \x19 -

              +

              + \x19 +

              -

              - SUB -

              +

              + SUB +

              -

              - \x1A -

              +

              + \x1A +

              -

              - ESC -

              +

              + ESC +

              -

              - \x1B -

              +

              + \x1B +

              -

              - IS4 -

              +

              + IS4 +

              -

              - \x1C -

              +

              + \x1C +

              -

              - IS3 -

              +

              + IS3 +

              -

              - \x1D -

              +

              + \x1D +

              -

              - IS2 -

              +

              + IS2 +

              -

              - \x1E -

              +

              + \x1E +

              -

              - IS1 -

              +

              + IS1 +

              -

              - \x1F -

              +

              + \x1F +

              -

              - space -

              +

              + space +

              -

              - \x20 -

              +

              + \x20 +

              -

              - exclamation-mark -

              +

              + exclamation-mark +

              -

              - ! -

              +

              + ! +

              -

              - quotation-mark -

              +

              + quotation-mark +

              -

              - " -

              +

              + " +

              -

              - number-sign -

              +

              + number-sign +

              -

              - # -

              +

              + # +

              -

              - dollar-sign -

              +

              + dollar-sign +

              -

              - $ -

              +

              + $ +

              -

              - percent-sign -

              +

              + percent-sign +

              -

              - % -

              +

              + % +

              -

              - ampersand -

              +

              + ampersand +

              -

              - & -

              +

              + & +

              -

              - apostrophe -

              +

              + apostrophe +

              -

              - ' -

              +

              + ' +

              -

              - left-parenthesis -

              +

              + left-parenthesis +

              -

              - ( -

              +

              + ( +

              -

              - right-parenthesis -

              +

              + right-parenthesis +

              -

              - ) -

              +

              + ) +

              -

              - asterisk -

              +

              + asterisk +

              -

              - * -

              +

              + * +

              -

              - plus-sign -

              +

              + plus-sign +

              -

              - + -

              +

              + + +

              -

              - comma -

              +

              + comma +

              -

              - , -

              +

              + , +

              -

              - hyphen -

              +

              + hyphen +

              -

              - - -

              +

              + - +

              -

              - period -

              +

              + period +

              -

              - . -

              +

              + . +

              -

              - slash -

              +

              + slash +

              -

              - / -

              +

              + / +

              -

              - zero -

              +

              + zero +

              -

              - 0 -

              +

              + 0 +

              -

              - one -

              +

              + one +

              -

              - 1 -

              +

              + 1 +

              -

              - two -

              +

              + two +

              -

              - 2 -

              +

              + 2 +

              -

              - three -

              +

              + three +

              -

              - 3 -

              +

              + 3 +

              -

              - four -

              +

              + four +

              -

              - 4 -

              +

              + 4 +

              -

              - five -

              +

              + five +

              -

              - 5 -

              +

              + 5 +

              -

              - six -

              +

              + six +

              -

              - 6 -

              +

              + 6 +

              -

              - seven -

              +

              + seven +

              -

              - 7 -

              +

              + 7 +

              -

              - eight -

              +

              + eight +

              -

              - 8 -

              +

              + 8 +

              -

              - nine -

              +

              + nine +

              -

              - 9 -

              +

              + 9 +

              -

              - colon -

              +

              + colon +

              -

              - : -

              +

              + : +

              -

              - semicolon -

              +

              + semicolon +

              -

              - ; -

              +

              + ; +

              -

              - less-than-sign -

              +

              + less-than-sign +

              -

              - < -

              +

              + < +

              -

              - equals-sign -

              +

              + equals-sign +

              -

              - = -

              +

              + = +

              -

              - greater-than-sign -

              +

              + greater-than-sign +

              -

              - > -

              +

              + > +

              -

              - question-mark -

              +

              + question-mark +

              -

              - ? -

              +

              + ? +

              -

              - commercial-at -

              +

              + commercial-at +

              -

              - @ -

              +

              + @ +

              -

              - left-square-bracket -

              +

              + left-square-bracket +

              -

              - [ -

              +

              + [ +

              -

              - backslash -

              +

              + backslash +

              -

              - \ -

              +

              + \ +

              -

              - right-square-bracket -

              +

              + right-square-bracket +

              -

              - ] -

              +

              + ] +

              -

              - circumflex -

              +

              + circumflex +

              -

              - ~ -

              +

              + ~ +

              -

              - underscore -

              +

              + underscore +

              -

              - _ -

              +

              + _ +

              -

              - grave-accent -

              +

              + grave-accent +

              -

              - ` -

              +

              + ` +

              -

              - left-curly-bracket -

              +

              + left-curly-bracket +

              -

              - { -

              +

              + { +

              -

              - vertical-line -

              +

              + vertical-line +

              -

              - | -

              +

              + | +

              -

              - right-curly-bracket -

              +

              + right-curly-bracket +

              -

              - } -

              +

              + } +

              -

              - tilde -

              +

              + tilde +

              -

              - ~ -

              +

              + ~ +

              -

              - DEL -

              +

              + DEL +

              -

              - \x7F -

              +

              + \x7F +

              @@ -979,7 +979,7 @@
              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/doc/html/boost_regex/syntax/leftmost_longest_rule.html index ecfbabba..1e87adc2 100644 --- a/doc/html/boost_regex/syntax/leftmost_longest_rule.html +++ b/doc/html/boost_regex/syntax/leftmost_longest_rule.html @@ -2,8 +2,8 @@ The Leftmost Longest Rule - - + + @@ -20,9 +20,9 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              The Leftmost Longest Rule @@ -32,35 +32,35 @@ location, for POSIX basic and extended regular expressions, the "best" match is determined as follows:

              -
                -
              1. - Find the leftmost match, if there is only one match possible at this location - then return it. -
              2. -
              3. - Find the longest of the possible matches, along with any ties. If there - is only one such possible match then return it. -
              4. -
              5. - If there are no marked sub-expressions, then all the remaining alternatives - are indistinguishable; return the first of these found. -
              6. -
              7. - Find the match which has matched the first sub-expression in the leftmost - position, along with any ties. If there is only on such match possible - then return it. -
              8. -
              9. - Find the match which has the longest match for the first sub-expression, - along with any ties. If there is only one such match then return it. -
              10. -
              11. - Repeat steps 4 and 5 for each additional marked sub-expression. -
              12. -
              13. - If there is still more than one possible match remaining, then they are - indistinguishable; return the first one found. -
              14. +
                  +
                1. + Find the leftmost match, if there is only one match possible at this + location then return it. +
                2. +
                3. + Find the longest of the possible matches, along with any ties. If there + is only one such possible match then return it. +
                4. +
                5. + If there are no marked sub-expressions, then all the remaining alternatives + are indistinguishable; return the first of these found. +
                6. +
                7. + Find the match which has matched the first sub-expression in the leftmost + position, along with any ties. If there is only on such match possible + then return it. +
                8. +
                9. + Find the match which has the longest match for the first sub-expression, + along with any ties. If there is only one such match then return it. +
                10. +
                11. + Repeat steps 4 and 5 for each additional marked sub-expression. +
                12. +
                13. + If there is still more than one possible match remaining, then they are + indistinguishable; return the first one found. +
              @@ -73,7 +73,7 @@

              -PrevUpHomeNext +PrevUpHomeNext
              diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 269c0370..44f30850 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -2,8 +2,8 @@ Perl Regular Expression Syntax - - + + @@ -20,15 +20,15 @@
              -PrevUpHomeNext +PrevUpHomeNext
              -
              +

              - + Synopsis

              @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

              - + Perl Regular Expression Syntax

              @@ -53,27 +53,27 @@

              .[{()\*+?|^$
              - + Wildcard

              The single character '.' when used outside of a character set will match any single character except:

              -
                -
              • - The NULL character when the flag - match_not_dot_null is passed to the matching - algorithms. -
              • -
              • - The newline character when the flag - match_not_dot_newline is passed to the matching - algorithms. -
              • +
                - + Anchors

                @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

                - + Marked sub-expressions
                @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

                - + Non-marking grouping
                @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

                - + Repeats

                @@ -188,7 +188,7 @@ to be applied to.

                - + Non greedy repeats
                @@ -218,7 +218,7 @@ while consuming as little input as possible.

                - + Pocessive repeats
                @@ -250,7 +250,7 @@ while giving nothing back.

                - + Back references

                @@ -279,77 +279,77 @@ -

                - Escape -

                +

                + Escape +

                -

                - Meaning -

                +

                + Meaning +

                -

                - \g1 -

                +

                + \g1 +

                -

                - Match whatever matched sub-expression 1 -

                +

                + Match whatever matched sub-expression 1 +

                -

                - \g{1} -

                +

                + \g{1} +

                -

                - Match whatever matched sub-expression 1: this form allows for safer - parsing of the expression in cases like \g{1}2 - or for indexes higher than 9 as in \g{1234} -

                +

                + Match whatever matched sub-expression 1: this form allows for safer + parsing of the expression in cases like \g{1}2 + or for indexes higher than 9 as in \g{1234} +

                -

                - \g-1 -

                +

                + \g-1 +

                -

                - Match whatever matched the last opened sub-expression -

                +

                + Match whatever matched the last opened sub-expression +

                -

                - \g{-2} -

                +

                + \g{-2} +

                -

                - Match whatever matched the last but one opened sub-expression -

                +

                + Match whatever matched the last but one opened sub-expression +

                -

                - \g{one} -

                +

                + \g{one} +

                -

                - Match whatever matched the sub-expression named "one" -

                +

                + Match whatever matched the sub-expression named "one" +

                @@ -360,7 +360,7 @@ named "two".

                - + Alternation

                @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

                - + Character sets

                @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

                - + Single characters

                @@ -407,7 +407,7 @@ 'b', or 'c'.

                - + Character ranges
                @@ -421,7 +421,7 @@ sensitive.

                - + Negation

                @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

                - + Character classes
                @@ -441,7 +441,7 @@ class names.

                - + Collating Elements
                @@ -463,7 +463,7 @@ matches a \0 character.

                - + Equivalence classes
                @@ -480,7 +480,7 @@ or even all locales on one platform.

                - + Escaped Characters
                @@ -492,7 +492,7 @@ is not a "word" character.

                - + Combinations

                @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

                - + Escapes

                @@ -516,183 +516,183 @@ -

                - Escape -

                +

                + Escape +

                -

                - Character -

                +

                + Character +

                -

                - \a -

                +

                + \a +

                -

                - \a -

                +

                + \a +

                -

                - \e -

                +

                + \e +

                -

                - 0x1B -

                +

                + 0x1B +

                -

                - \f -

                +

                + \f +

                -

                - \f -

                +

                + \f +

                -

                - \n -

                +

                + \n +

                -

                - \n -

                +

                + \n +

                -

                - \r -

                +

                + \r +

                -

                - \r -

                +

                + \r +

                -

                - \t -

                +

                + \t +

                -

                - \t -

                +

                + \t +

                -

                - \v -

                +

                + \v +

                -

                - \v -

                +

                + \v +

                -

                - \b -

                +

                + \b +

                -

                - \b (but only inside a character class declaration). -

                +

                + \b (but only inside a character class declaration). +

                -

                - \cX -

                +

                + \cX +

                -

                - An ASCII escape sequence - the character whose code point is X % - 32 -

                +

                + An ASCII escape sequence - the character whose code point is X + % 32 +

                -

                - \xdd -

                +

                + \xdd +

                -

                - A hexadecimal escape sequence - matches the single character whose - code point is 0xdd. -

                +

                + A hexadecimal escape sequence - matches the single character whose + code point is 0xdd. +

                -

                - \x{dddd} -

                +

                + \x{dddd} +

                -

                - A hexadecimal escape sequence - matches the single character whose - code point is 0xdddd. -

                +

                + A hexadecimal escape sequence - matches the single character whose + code point is 0xdddd. +

                -

                - \0ddd -

                +

                + \0ddd +

                -

                - An octal escape sequence - matches the single character whose code - point is 0ddd. -

                +

                + An octal escape sequence - matches the single character whose code + point is 0ddd. +

                -

                - \N{name} -

                +

                + \N{name} +

                -

                - Matches the single character which has the symbolic - name name. For example \N{newline} - matches the single character \n. -

                +

                + Matches the single character which has the symbolic + name name. For example \N{newline} + matches the single character \n. +

              - + "Single character" character classes:
              @@ -712,189 +712,189 @@ -

              - Escape sequence -

              +

              + Escape sequence +

              -

              - Equivalent to -

              +

              + Equivalent to +

              -

              - \d -

              +

              + \d +

              -

              - [[:digit:]] -

              +

              + [[:digit:]] +

              -

              - \l -

              +

              + \l +

              -

              - [[:lower:]] -

              +

              + [[:lower:]] +

              -

              - \s -

              +

              + \s +

              -

              - [[:space:]] -

              +

              + [[:space:]] +

              -

              - \u -

              +

              + \u +

              -

              - [[:upper:]] -

              +

              + [[:upper:]] +

              -

              - \w -

              +

              + \w +

              -

              - [[:word:]] -

              +

              + [[:word:]] +

              -

              - \h -

              +

              + \h +

              -

              - Horizontal whitespace -

              +

              + Horizontal whitespace +

              -

              - \v -

              +

              + \v +

              -

              - Vertical whitespace -

              +

              + Vertical whitespace +

              -

              - \D -

              +

              + \D +

              -

              - [^[:digit:]] -

              +

              + [^[:digit:]] +

              -

              - \L -

              +

              + \L +

              -

              - [^[:lower:]] -

              +

              + [^[:lower:]] +

              -

              - \S -

              +

              + \S +

              -

              - [^[:space:]] -

              +

              + [^[:space:]] +

              -

              - \U -

              +

              + \U +

              -

              - [^[:upper:]] -

              +

              + [^[:upper:]] +

              -

              - \W -

              +

              + \W +

              -

              - [^[:word:]] -

              +

              + [^[:word:]] +

              -

              - \H -

              +

              + \H +

              -

              - Not Horizontal whitespace -

              +

              + Not Horizontal whitespace +

              -

              - \V -

              +

              + \V +

              -

              - Not Vertical whitespace -

              +

              + Not Vertical whitespace +

              - + Character Properties
              @@ -911,88 +911,88 @@ -

              - Form -

              +

              + Form +

              -

              - Description -

              +

              + Description +

              -

              - Equivalent character set form -

              +

              + Equivalent character set form +

              -

              - \pX -

              +

              + \pX +

              -

              - Matches any character that has the property X. -

              +

              + Matches any character that has the property X. +

              -

              - [[:X:]] -

              +

              + [[:X:]] +

              -

              - \p{Name} -

              +

              + \p{Name} +

              -

              - Matches any character that has the property Name. -

              +

              + Matches any character that has the property Name. +

              -

              - [[:Name:]] -

              +

              + [[:Name:]] +

              -

              - \PX -

              +

              + \PX +

              -

              - Matches any character that does not have the property X. -

              +

              + Matches any character that does not have the property X. +

              -

              - [^[:X:]] -

              +

              + [^[:X:]] +

              -

              - \P{Name} -

              +

              + \P{Name} +

              -

              - Matches any character that does not have the property Name. -

              +

              + Matches any character that does not have the property Name. +

              -

              - [^[:Name:]] -

              +

              + [^[:Name:]] +

              @@ -1002,7 +1002,7 @@ as does \p{digit}.

              - + Word Boundaries

              @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

              - + Buffer boundaries

              @@ -1048,7 +1048,7 @@ (?=\n?\z).

              - + Continuation Escape
              @@ -1060,7 +1060,7 @@ one ended.

              - + Quoting escape

              @@ -1073,7 +1073,7 @@ \*+aaa

              - + Unicode escapes

              @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

              - + Matching Line Endings
              @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

              - + Keeping back some text
              @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

              - + Any other escape
              @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

              - + Perl Extended Patterns
              @@ -1125,7 +1125,7 @@ (?.

              - + Named Subexpressions
              @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

              - + Comments

              (?# ... ) is treated as a comment, it's contents are ignored.

              - + Modifiers

              @@ -1168,7 +1168,7 @@ pattern only.

              - + Non-marking groups
              @@ -1177,7 +1177,7 @@ an additional sub-expression.

              - + Branch reset

              @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

              - + Lookahead

              @@ -1222,7 +1222,7 @@ could be used to validate the password.

              - + Lookbehind

              @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

              - + Independent sub-expressions
              @@ -1249,7 +1249,7 @@ no match is found at all.

              - + Recursive Expressions
              @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

              - + Conditional Expressions
              @@ -1295,68 +1295,70 @@

              Here is a summary of the possible predicates:

              -
                -
              • -(?(?=assert)yes-pattern|no-pattern) Executes yes-pattern - if the forward look-ahead assert matches, otherwise executes no-pattern. -
              • -
              • -(?(?!assert)yes-pattern|no-pattern) Executes yes-pattern - if the forward look-ahead assert does not match, otherwise executes no-pattern. -
              • -
              • -(?(R)yes-pattern|no-pattern) Executes yes-pattern - if we are executing inside a recursion, otherwise executes no-pattern. -
              • -
              • -(?(RN)yes-pattern|no-pattern) Executes - yes-pattern if we are executing inside a recursion - to sub-expression N, otherwise executes no-pattern. -
              • -
              • -(?(DEFINE)never-exectuted-pattern) Defines a block of - code that is never executed and matches no characters: this is usually - used to define one or more named sub-expressions which are refered to from - elsewhere in the pattern. -
              • +
                  +
                • + (?(?=assert)yes-pattern|no-pattern) Executes yes-pattern + if the forward look-ahead assert matches, otherwise executes no-pattern. +
                • +
                • + (?(?!assert)yes-pattern|no-pattern) Executes yes-pattern + if the forward look-ahead assert does not match, otherwise executes + no-pattern. +
                • +
                • + (?(R)yes-pattern|no-pattern) Executes yes-pattern + if we are executing inside a recursion, otherwise executes no-pattern. +
                • +
                • + (?(RN)yes-pattern|no-pattern) + Executes yes-pattern if we are executing inside + a recursion to sub-expression N, otherwise executes + no-pattern. +
                • +
                • + (?(DEFINE)never-exectuted-pattern) Defines a block + of code that is never executed and matches no characters: this is usually + used to define one or more named sub-expressions which are refered to + from elsewhere in the pattern. +
                - + Operator precedence

                The order of precedence for of operators is as follows:

                -
                  -
                1. - Collation-related bracket symbols [==] - [::] [..] -
                2. -
                3. - Escaped characters \ -
                4. -
                5. - Character set (bracket expression) [] -
                6. -
                7. - Grouping () -
                8. -
                9. - Single-character-ERE duplication * + ? {m,n} -
                10. -
                11. - Concatenation -
                12. -
                13. - Anchoring ^$ -
                14. -
                15. - Alternation | -
                16. +
                    +
                  1. + Collation-related bracket symbols [==] + [::] [..] +
                  2. +
                  3. + Escaped characters \ +
                  4. +
                  5. + Character set (bracket expression) [] +
                  6. +
                  7. + Grouping () +
                  8. +
                  9. + Single-character-ERE duplication * + ? {m,n} +
                  10. +
                  11. + Concatenation +
                  12. +
                  13. + Anchoring ^$ +
                  14. +
                  15. + Alternation | +

                  - + What gets matched

                  @@ -1379,159 +1381,160 @@ -

                  - Construct -

                  +

                  + Construct +

                  -

                  - What gets matched -

                  +

                  + What gets matched +

                  -

                  - AtomA AtomB -

                  +

                  + AtomA AtomB +

                  -

                  - Locates the best match for AtomA that has a - following match for AtomB. -

                  +

                  + Locates the best match for AtomA that has + a following match for AtomB. +

                  -

                  - Expression1 | Expression2 -

                  +

                  + Expression1 | Expression2 +

                  -

                  - If Expresion1 can be matched then returns that - match, otherwise attempts to match Expression2. -

                  +

                  + If Expresion1 can be matched then returns + that match, otherwise attempts to match Expression2. +

                  -

                  - S{N} -

                  +

                  + S{N} +

                  -

                  - Matches S repeated exactly N times. -

                  +

                  + Matches S repeated exactly N times. +

                  -

                  - S{N,M} -

                  +

                  + S{N,M} +

                  -

                  - Matches S repeated between N and M times, and as many times as possible. -

                  +

                  + Matches S repeated between N and M times, and as many times as + possible. +

                  -

                  - S{N,M}? -

                  +

                  + S{N,M}? +

                  -

                  - Matches S repeated between N and M times, and as few times as possible. -

                  +

                  + Matches S repeated between N and M times, and as few times as possible. +

                  -

                  - S?, S*, S+ -

                  +

                  + S?, S*, S+ +

                  -

                  - The same as S{0,1}, S{0,UINT_MAX}, - S{1,UINT_MAX} respectively. -

                  +

                  + The same as S{0,1}, S{0,UINT_MAX}, + S{1,UINT_MAX} respectively. +

                  -

                  - S??, S*?, S+? -

                  +

                  + S??, S*?, S+? +

                  -

                  - The same as S{0,1}?, S{0,UINT_MAX}?, - S{1,UINT_MAX}? respectively. -

                  +

                  + The same as S{0,1}?, S{0,UINT_MAX}?, + S{1,UINT_MAX}? respectively. +

                  -

                  - (?>S) -

                  +

                  + (?>S) +

                  -

                  - Matches the best match for S, and only that. -

                  +

                  + Matches the best match for S, and only that. +

                  -

                  - (?=S), (?<=S) -

                  +

                  + (?=S), (?<=S) +

                  -

                  - Matches only the best match for S (this is only - visible if there are capturing parenthesis within S). -

                  +

                  + Matches only the best match for S (this is + only visible if there are capturing parenthesis within S). +

                  -

                  - (?!S), (?<!S) -

                  +

                  + (?!S), (?<!S) +

                  -

                  - Considers only whether a match for S exists or not. -

                  +

                  + Considers only whether a match for S exists or not. +

                  -

                  - (?(condition)yes-pattern | no-pattern) -

                  +

                  + (?(condition)yes-pattern | no-pattern) +

                  -

                  - If condition is true, then only yes-pattern is considered, otherwise - only no-pattern is considered. -

                  +

                  + If condition is true, then only yes-pattern is considered, otherwise + only no-pattern is considered. +

                - + Variations

                @@ -1540,7 +1543,7 @@ and JScript are all synonyms for perl.

                - + Options

                @@ -1552,7 +1555,7 @@ are to be applied.

                - + Pattern Modifiers

                @@ -1564,7 +1567,7 @@ and no_mod_s.

                - + References

                @@ -1581,7 +1584,7 @@


                -PrevUpHomeNext +PrevUpHomeNext
                diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 1c47471f..bab4f6ef 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -2,8 +2,8 @@ Unicode and Boost.Regex - - + + @@ -20,9 +20,9 @@
                -PrevUpHomeNext +PrevUpHomeNext
                -
                +
                @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

                - + Rely on wchar_t

                @@ -40,23 +40,23 @@ std::iswlower etc), then you can use boost::wregex to process Unicode. However, there are several disadvantages to this approach:

                -
                  -
                • - It's not portable: there's no guarantee on the width of wchar_t, - or even whether the runtime treats wide characters as Unicode at all, most - Windows compilers do so, but many Unix systems do not. -
                • -
                • - There's no support for Unicode-specific character classes: [[:Nd:]], - [[:Po:]] etc. -
                • -
                • - You can only search strings that are encoded as sequences of wide characters, - it is not possible to search UTF-8, or even UTF-16 on many platforms. -
                • +
                    +
                  • + It's not portable: there's no guarantee on the width of wchar_t, + or even whether the runtime treats wide characters as Unicode at all, most + Windows compilers do so, but many Unix systems do not. +
                  • +
                  • + There's no support for Unicode-specific character classes: [[:Nd:]], [[:Po:]] + etc. +
                  • +
                  • + You can only search strings that are encoded as sequences of wide characters, + it is not possible to search UTF-8, or even UTF-16 on many platforms. +
                  - + Use a Unicode Aware Regular Expression Type.
                  @@ -79,7 +79,7 @@
                  -PrevUpHomeNext +PrevUpHomeNext
                  diff --git a/doc/html/index.html b/doc/html/index.html index b2334c42..d914a70d 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -2,8 +2,8 @@ Boost.Regex - - + + @@ -17,8 +17,8 @@ More
                  -
                  Next
                  -
                  +
                  Next
                  +

                  @@ -28,7 +28,7 @@

                  -

                  +

                  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)

                  @@ -196,10 +196,10 @@

                  - +

                  Last revised: May 15, 2010 at 09:09:46 GMT

                  Last revised: July 08, 2010 at 22:35:49 GMT


                  -
                  Next
                  +
                  Next
                  From 73030b500e6807f8908482ef250ff1921efa894e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 15 Jul 2010 17:18:25 +0000 Subject: [PATCH 46/77] Update docs to match all the fixes applied to 1.44. [SVN r64054] --- doc/history.qbk | 1 + .../boost_regex/background_information.html | 4 +- .../acknowledgements.html | 4 +- .../background_information/examples.html | 56 ++-- .../background_information/faq.html | 4 +- .../background_information/futher.html | 4 +- .../background_information/headers.html | 4 +- .../background_information/history.html | 137 ++++----- .../background_information/locale.html | 12 +- .../background_information/performance.html | 10 +- .../background_information/redist.html | 4 +- .../background_information/standards.html | 14 +- .../background_information/thread_safety.html | 4 +- doc/html/boost_regex/captures.html | 16 +- doc/html/boost_regex/configuration.html | 4 +- .../boost_regex/configuration/algorithm.html | 4 +- .../boost_regex/configuration/compiler.html | 4 +- .../boost_regex/configuration/linkage.html | 4 +- .../boost_regex/configuration/locale.html | 4 +- .../boost_regex/configuration/tuning.html | 4 +- doc/html/boost_regex/format.html | 4 +- .../format/boost_format_syntax.html | 12 +- doc/html/boost_regex/format/perl_format.html | 4 +- doc/html/boost_regex/format/sed_format.html | 4 +- doc/html/boost_regex/install.html | 38 +-- .../introduction_and_overview.html | 4 +- doc/html/boost_regex/partial_matches.html | 12 +- doc/html/boost_regex/ref.html | 4 +- doc/html/boost_regex/ref/bad_expression.html | 8 +- doc/html/boost_regex/ref/basic_regex.html | 176 +++++++---- doc/html/boost_regex/ref/concepts.html | 4 +- .../ref/concepts/charT_concept.html | 4 +- .../ref/concepts/iterator_concepts.html | 4 +- .../ref/concepts/traits_concept.html | 12 +- .../ref/deprecated_interfaces.html | 4 +- .../ref/deprecated_interfaces/old_regex.html | 4 +- .../deprecated_interfaces/regex_format.html | 6 +- .../ref/deprecated_interfaces/regex_grep.html | 4 +- .../deprecated_interfaces/regex_split.html | 4 +- doc/html/boost_regex/ref/error_type.html | 8 +- doc/html/boost_regex/ref/match_flag_type.html | 6 +- doc/html/boost_regex/ref/match_results.html | 128 +++++--- doc/html/boost_regex/ref/non_std_strings.html | 4 +- .../boost_regex/ref/non_std_strings/icu.html | 4 +- .../ref/non_std_strings/icu/intro.html | 12 +- .../ref/non_std_strings/icu/unicode_algo.html | 10 +- .../ref/non_std_strings/icu/unicode_iter.html | 8 +- .../non_std_strings/icu/unicode_types.html | 4 +- .../ref/non_std_strings/mfc_strings.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 14 +- .../mfc_strings/mfc_intro.html | 4 +- .../non_std_strings/mfc_strings/mfc_iter.html | 8 +- .../mfc_strings/mfc_regex_create.html | 4 +- .../mfc_strings/mfc_regex_types.html | 4 +- doc/html/boost_regex/ref/posix.html | 28 +- doc/html/boost_regex/ref/regex_iterator.html | 52 +++- doc/html/boost_regex/ref/regex_match.html | 8 +- doc/html/boost_regex/ref/regex_replace.html | 8 +- doc/html/boost_regex/ref/regex_search.html | 8 +- .../boost_regex/ref/regex_token_iterator.html | 60 ++-- doc/html/boost_regex/ref/regex_traits.html | 20 +- doc/html/boost_regex/ref/sub_match.html | 276 +++++++++++++----- .../boost_regex/ref/syntax_option_type.html | 4 +- .../syntax_option_type_basic.html | 4 +- .../syntax_option_type_extended.html | 4 +- .../syntax_option_type_literal.html | 4 +- .../syntax_option_type_overview.html | 4 +- .../syntax_option_type_perl.html | 4 +- .../syntax_option_type_synopsis.html | 4 +- doc/html/boost_regex/syntax.html | 12 +- .../boost_regex/syntax/basic_extended.html | 106 +++---- doc/html/boost_regex/syntax/basic_syntax.html | 62 ++-- .../boost_regex/syntax/character_classes.html | 4 +- .../optional_char_class_names.html | 10 +- .../character_classes/std_char_clases.html | 4 +- .../boost_regex/syntax/collating_names.html | 4 +- .../syntax/collating_names/digraphs.html | 4 +- .../syntax/collating_names/named_unicode.html | 4 +- .../collating_names/posix_symbolic_names.html | 4 +- .../syntax/leftmost_longest_rule.html | 20 +- doc/html/boost_regex/syntax/perl_syntax.html | 136 ++++----- doc/html/boost_regex/unicode.html | 16 +- doc/html/index.html | 8 +- 83 files changed, 1020 insertions(+), 694 deletions(-) diff --git a/doc/history.qbk b/doc/history.qbk index 36127ef9..54ce54e5 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -18,6 +18,7 @@ All issues including closed ones can be viewed [@https://svn.boost.org/trac/boos [h4 Boost 1.44] Fixed issues: +[@https://svn.boost.org/trac/boost/ticket/4309 #4309], [@https://svn.boost.org/trac/boost/ticket/4215 #4215], [@https://svn.boost.org/trac/boost/ticket/4212 #4212], [@https://svn.boost.org/trac/boost/ticket/4191 #4191], diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index bf6507b9..9907bae9 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -3,7 +3,7 @@ Background Information - + @@ -22,7 +22,7 @@
                  PrevUpHomeNext
                  -
                  +
                  diff --git a/doc/html/boost_regex/background_information/acknowledgements.html b/doc/html/boost_regex/background_information/acknowledgements.html index 6e56a087..7699e729 100644 --- a/doc/html/boost_regex/background_information/acknowledgements.html +++ b/doc/html/boost_regex/background_information/acknowledgements.html @@ -3,7 +3,7 @@ Acknowledgements - + @@ -22,7 +22,7 @@
                  PrevUpHomeNext
                  -
                  +

                  Acknowledgements diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index d5b10367..92ed1029 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -3,7 +3,7 @@ Test and Example Programs - + @@ -22,13 +22,13 @@
                  PrevUpHomeNext
                  -
                  +
                  - + Test Programs
                  @@ -45,71 +45,71 @@

                  Files:

                  -
                    -
                  • + @@ -151,7 +151,7 @@ Files: captures_test.cpp.

                    - + Example programs
                    @@ -177,7 +177,7 @@ Files: regex_timer.cpp.

                    - + Code snippets
                    diff --git a/doc/html/boost_regex/background_information/faq.html b/doc/html/boost_regex/background_information/faq.html index 53a25a46..f6c7c0bf 100644 --- a/doc/html/boost_regex/background_information/faq.html +++ b/doc/html/boost_regex/background_information/faq.html @@ -3,7 +3,7 @@ FAQ - + @@ -22,7 +22,7 @@
                    PrevUpHomeNext
                    -
                    +
                    diff --git a/doc/html/boost_regex/background_information/futher.html b/doc/html/boost_regex/background_information/futher.html index 467ffec4..ce5a939c 100644 --- a/doc/html/boost_regex/background_information/futher.html +++ b/doc/html/boost_regex/background_information/futher.html @@ -3,7 +3,7 @@ References and Further Information - + @@ -22,7 +22,7 @@
                    PrevUpHomeNext
                    -
                    +

                    References and Further Information diff --git a/doc/html/boost_regex/background_information/headers.html b/doc/html/boost_regex/background_information/headers.html index b6a4f8aa..315e7b14 100644 --- a/doc/html/boost_regex/background_information/headers.html +++ b/doc/html/boost_regex/background_information/headers.html @@ -3,7 +3,7 @@ Headers - + @@ -22,7 +22,7 @@
                    PrevUpHomeNext
                    -
                    +
                    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index adb9d7a2..30d2c8ee 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -3,7 +3,7 @@ History - + @@ -21,7 +21,7 @@
                    PrevUpHome
                    -
                    +
                    @@ -36,12 +36,13 @@ All issues including closed ones can be viewed here.

                    - + Boost 1.44

                    - Fixed issues: #4215, + Fixed issues: #4309, + #4215, #4212, #4191, #4132, @@ -54,22 +55,22 @@ #3890

                    - + Boost 1.42
                    -
                      -
                    • +
                        +
                      • Added support for Functors rather than strings as format expressions.
                      • -
                      • +
                      • Improved error reporting when throwing exceptions to include better more relevant information.
                      • -
                      • +
                      • Improved performance and reduced stack usage of recursive expressions.
                      • -
                      • +
                      • Fixed tickets #2802, #3425, #3507, @@ -83,21 +84,21 @@
                      - + Boost 1.40
                      -
                      • +
                        • Added support for many Perl 5.10 syntax elements including named sub-expressions, branch resets and recursive regular expressions.
                        - + Boost 1.38
                        -
                          -
                        • +
                            +
                          • Breaking change: empty expressions, and empty alternatives are now allowed when using the Perl regular expression syntax. This change has been added for Perl compatibility, when the new @@ -105,124 +106,124 @@ no_empty_expressions is set then the old behaviour is preserved and empty expressions are prohibited. This is issue #1081.
                          • -
                          • +
                          • Added support for Perl style ${n} expressions in format strings (issue #2556).
                          • -
                          • +
                          • Added support for accessing the location of sub-expressions within the regular expression string (issue #2269).
                          • -
                          • +
                          • Fixed compiler compatibility issues #2244, #2514, and #2458.
                          - + Boost 1.34
                          -
                            -
                          • +
                              +
                            • Fix for non-greedy repeats and partial matches not working correctly in some cases.
                            • -
                            • +
                            • Fix for non-greedy repeats on VC++ not working in some cases (bug report 1515830).
                            • -
                            • +
                            • Changed match_results::position() to return a valid result when *this represents a partial match.
                            • -
                            • +
                            • Fixed the grep and egrep options so that the newline character gets treated the same as |.
                            - + Boost 1.33.1
                            -
                              -
                            • +
                                +
                              • Fixed broken makefiles.
                              • -
                              • +
                              • Fixed configuration setup to allow building with VC7.1 - STLport-4.6.2 when using /Zc:wchar_t.
                              • -
                              • +
                              • Moved declarations class-inline in static_mutex.hpp so that SGI Irix compiler can cope.
                              • -
                              • +
                              • Added needed standard library #includes to fileiter.hpp, regex_workaround.hpp and cpp_regex_traits.hpp.
                              • -
                              • +
                              • Fixed a bug where non-greedy repeats could in certain strange curcumstances repeat more times than their maximum value.
                              • -
                              • +
                              • Fixed the value returned by basic_regex<>::empty() from a default constructed object.
                              • -
                              • +
                              • Changed the deffinition of regex_error to make it backwards compatible with Boost-1.32.0.
                              • -
                              • +
                              • Disabled external templates for Intel C++ 8.0 and earlier - otherwise unresolved references can occur.
                              • -
                              • +
                              • Rewritten extern template code for gcc so that only specific member functions are exported: otherwise strange unresolved references can occur when linking and mixing debug and non-debug code.
                              • -
                              • +
                              • Initialise all the data members of the unicode_iterators: this keeps gcc from issuing needless warnings.
                              • -
                              • +
                              • Ported the ICU integration code to VC6 and VC7.
                              • -
                              • +
                              • Ensured code is STLport debug mode clean.
                              • -
                              • +
                              • Fixed lookbehind assertions so that fixed length repeats are permitted, and so that regex iteration allows lookbehind to look back before the current search range (into the last match).
                              • -
                              • +
                              • Fixed strange bug with non-greedy repeats inside forward lookahead assertions.
                              • -
                              • +
                              • Enabled negated character classes inside character sets.
                              • -
                              • +
                              • Fixed regression so that [a-z-] is a valid expression again.
                              • -
                              • +
                              • Fixed bug that allowed some invalid expressions to be accepted.
                              - + Boost 1.33.0
                              -
                                -
                              • +
                                  +
                                • Completely rewritten expression parsing code, and traits class support; now conforms to the standardization proposal.
                                • -
                                • +
                                • Breaking Change: The syntax options that can be passed to basic_regex constructors have been rationalized. The default option (perl) now has a value of zero, and it is now clearly documented which options apply @@ -231,35 +232,35 @@ is the possibility that existing code may fail to compile: however equivalent functionality should still be available.
                                • -
                                • +
                                • Breaking Change: POSIX-extended and POSIX-basic regular expressions now enforce the letter of the POSIX standard much more closely than before.
                                • -
                                • +
                                • Added support for (?imsx-imsx) constructs.
                                • -
                                • +
                                • Added support for lookbehind expressions (?<=positive-lookbehind) and (?<!negative-lookbehind).
                                • -
                                • +
                                • Added support for conditional expressions (?(assertion)true-expresion|false-expression).
                                • -
                                • +
                                • Added MFC/ATL string wrappers.
                                • -
                                • +
                                • Added Unicode support; based on ICU.
                                • -
                                • +
                                • Changed newline support to recognise \f as a line separator (all character types), and \x85 as a line separator for wide characters / Unicode only.
                                • -
                                • +
                                • Added a new format flag format_literal that treats the replace string as a literal, rather than a Perl or Sed style format string.
                                • -
                                • +
                                • Errors are now reported by throwing exceptions of type regex_error. The types used previously - bad_expression and bad_pattern - are now just typedefs for regex_error. Type regex_error has a couple of new members: @@ -268,44 +269,44 @@
                                - + Boost 1.32.1
                                -
                                • +
                                  • Fixed bug in partial matches of bounded repeats of '.'.
                                  - + Boost 1.31.0
                                  -
                                    -
                                  • +
                                      +
                                    • Completely rewritten pattern matching code - it is now up to 10 times faster than before.
                                    • -
                                    • +
                                    • Reorganized documentation.
                                    • -
                                    • +
                                    • Deprecated all interfaces that are not part of the regular expression standardization proposal.
                                    • -
                                    • +
                                    • Added regex_iterator and regex_token_iterator .
                                    • -
                                    • +
                                    • Added support for Perl style independent sub-expressions.
                                    • -
                                    • +
                                    • Added non-member operators to the sub_match class, so that you can compare sub_match's with strings, or add them to a string to produce a new string.
                                    • -
                                    • +
                                    • Added experimental support for extended capture information.
                                    • -
                                    • +
                                    • Changed the match flags so that they are a distinct type (not an integer), if you try to pass the match flags as an integer rather than match_flag_type to the regex algorithms then you will now get a compiler error. diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 167f750e..20c4ad68 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -3,7 +3,7 @@ Localization - + @@ -22,7 +22,7 @@
                                      PrevUpHomeNext
                                      -
                                      +
                                      @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

                                      - + Win32 localization model.
                                      @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

                                      - + C localization model.
                                      @@ -114,7 +114,7 @@ libraries including version 1 of this library.

                                      - + C++ localization model.
                                      @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

                                      - + Providing a message catalogue
                                      diff --git a/doc/html/boost_regex/background_information/performance.html b/doc/html/boost_regex/background_information/performance.html index 164d6c59..6caeb5b0 100644 --- a/doc/html/boost_regex/background_information/performance.html +++ b/doc/html/boost_regex/background_information/performance.html @@ -3,7 +3,7 @@ Performance - + @@ -22,7 +22,7 @@
                                      PrevUpHomeNext
                                      -
                                      +
                                      @@ -33,12 +33,12 @@ synchronisation), but not by much. The following pages compare Boost.Regex with various other regular expression libraries for the following compilers:

                                      -
                                        -
                                      • +
                                          +
                                        • Visual Studio.Net 2003 (recursive Boost.Regex implementation).
                                        • -
                                        • +
                                        • Gcc 3.2 (cygwin) (non-recursive Boost.Regex implementation).
                                        • diff --git a/doc/html/boost_regex/background_information/redist.html b/doc/html/boost_regex/background_information/redist.html index b95f24b5..f8c8459c 100644 --- a/doc/html/boost_regex/background_information/redist.html +++ b/doc/html/boost_regex/background_information/redist.html @@ -3,7 +3,7 @@ Redistributables - + @@ -22,7 +22,7 @@
                                          PrevUpHomeNext
                                          -
                                          +
                                          diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index c3c0d573..8f1a058b 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -3,7 +3,7 @@ Standards Conformance - + @@ -22,13 +22,13 @@
                                          PrevUpHomeNext
                                          -
                                          +
                                          - + C++

                                          @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

                                          - + ECMAScript / JavaScript
                                          @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

                                          - + Perl

                                          @@ -73,7 +73,7 @@ the Unicode requirements below.

                                          - + POSIX

                                          @@ -93,7 +93,7 @@ a custom traits class.

                                          - + Unicode

                                          diff --git a/doc/html/boost_regex/background_information/thread_safety.html b/doc/html/boost_regex/background_information/thread_safety.html index f9ead9dc..65950697 100644 --- a/doc/html/boost_regex/background_information/thread_safety.html +++ b/doc/html/boost_regex/background_information/thread_safety.html @@ -3,7 +3,7 @@ Thread Safety - + @@ -22,7 +22,7 @@

                                          PrevUpHomeNext
                                          -
                                          +

                                          Thread Safety diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 31eae096..290a0307 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -3,7 +3,7 @@ Understanding Marked Sub-Expressions and Captures - + @@ -22,7 +22,7 @@
                                          PrevUpHomeNext
                                          -
                                          +

                                          Understanding Marked Sub-Expressions and Captures @@ -35,7 +35,7 @@ accessed.

                                          - + Marked sub-expressions

                                          @@ -218,7 +218,7 @@ output stream.

                                          - + Unmatched Sub-Expressions

                                          @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

                                          - + Repeated Captures

                                          @@ -355,13 +355,13 @@ Text: "now is the time for all good men to come to the aid of the party" don't use it), and a much bigger impact if you do use it, therefore to use this feature you need to:

                                          -
                                            -
                                          • +
                                              +
                                            • Define BOOST_REGEX_MATCH_EXTRA for all translation units including the library source (the best way to do this is to uncomment this define in boost/regex/user.hpp and then rebuild everything.
                                            • -
                                            • +
                                            • Pass the match_extra flag to the particular algorithms where you actually need the captures information (regex_search, regex_match, or regex_iterator).
                                            • diff --git a/doc/html/boost_regex/configuration.html b/doc/html/boost_regex/configuration.html index 3756fe67..7f570125 100644 --- a/doc/html/boost_regex/configuration.html +++ b/doc/html/boost_regex/configuration.html @@ -3,7 +3,7 @@ Configuration - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +
                                              diff --git a/doc/html/boost_regex/configuration/algorithm.html b/doc/html/boost_regex/configuration/algorithm.html index ee995eee..2dfa8ec1 100644 --- a/doc/html/boost_regex/configuration/algorithm.html +++ b/doc/html/boost_regex/configuration/algorithm.html @@ -3,7 +3,7 @@ Algorithm Selection - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +
                                              diff --git a/doc/html/boost_regex/configuration/compiler.html b/doc/html/boost_regex/configuration/compiler.html index 60708fe5..a9310507 100644 --- a/doc/html/boost_regex/configuration/compiler.html +++ b/doc/html/boost_regex/configuration/compiler.html @@ -3,7 +3,7 @@ Compiler Setup - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +
                                              diff --git a/doc/html/boost_regex/configuration/linkage.html b/doc/html/boost_regex/configuration/linkage.html index a1c7082e..84a6af9b 100644 --- a/doc/html/boost_regex/configuration/linkage.html +++ b/doc/html/boost_regex/configuration/linkage.html @@ -3,7 +3,7 @@ Linkage Options - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +
                                              diff --git a/doc/html/boost_regex/configuration/locale.html b/doc/html/boost_regex/configuration/locale.html index 9ef6d3ca..f06105d4 100644 --- a/doc/html/boost_regex/configuration/locale.html +++ b/doc/html/boost_regex/configuration/locale.html @@ -3,7 +3,7 @@ Locale and traits class selection - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +

                                              Locale and traits class selection diff --git a/doc/html/boost_regex/configuration/tuning.html b/doc/html/boost_regex/configuration/tuning.html index 4d71f620..7b371e94 100644 --- a/doc/html/boost_regex/configuration/tuning.html +++ b/doc/html/boost_regex/configuration/tuning.html @@ -3,7 +3,7 @@ Algorithm Tuning - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +
                                              diff --git a/doc/html/boost_regex/format.html b/doc/html/boost_regex/format.html index d67e8a27..d543d0c2 100644 --- a/doc/html/boost_regex/format.html +++ b/doc/html/boost_regex/format.html @@ -3,7 +3,7 @@ Search and Replace Format String Syntax - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +
                                              diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index b05971ee..cf866fb7 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -3,7 +3,7 @@ Boost-Extended Format String Syntax - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +

                                              Boost-Extended Format String Syntax @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

                                              - + Grouping

                                              @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

                                              - + Conditionals

                                              @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

                                              - + Placeholder Sequences
                                              @@ -319,7 +319,7 @@ as a literal.

                                              - + Escape Sequences
                                              diff --git a/doc/html/boost_regex/format/perl_format.html b/doc/html/boost_regex/format/perl_format.html index a90c55d5..54155fe4 100644 --- a/doc/html/boost_regex/format/perl_format.html +++ b/doc/html/boost_regex/format/perl_format.html @@ -3,7 +3,7 @@ Perl Format String Syntax - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +
                                              diff --git a/doc/html/boost_regex/format/sed_format.html b/doc/html/boost_regex/format/sed_format.html index 1f1669ea..e9c77375 100644 --- a/doc/html/boost_regex/format/sed_format.html +++ b/doc/html/boost_regex/format/sed_format.html @@ -3,7 +3,7 @@ Sed Format String Syntax - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +
                                              diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 92c2e7a7..1a8ff313 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -3,7 +3,7 @@ Building and Installing the Library - + @@ -22,7 +22,7 @@
                                              PrevUpHomeNext
                                              -
                                              +
                                              @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

                                              - + Building with bjam

                                              @@ -58,7 +58,7 @@ started guide for more information.

                                              - + Building With Unicode and ICU Support
                                              @@ -96,22 +96,22 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

                                              - + Building via makefiles
                                              - + Borland C++ Builder:
                                              -
                                                -
                                              • +
                                                  +
                                                • Open up a console window and change to the <boost>\libs\regex\build directory.
                                                • -
                                                • +
                                                • Select the appropriate makefile (bcb4.mak for C++ Builder 4, bcb5.mak for C++ Builder 5, and bcb6.mak for C++ Builder 6).
                                                • -
                                                • +
                                                • Invoke the makefile (pass the full path to your version of make if you have more than one version installed, the makefile relies on the path to make to obtain your C++ Builder installation directory and tools) for example: @@ -165,7 +165,7 @@ a lot in compile times!

                                                  - + Microsoft Visual C++ 6, 7, 7.1 and 8
                                                  @@ -223,8 +223,8 @@ There are several important caveats to remember when using Boost.Regex with Microsoft's Compiler:

                                                  -
                                                    -
                                                  • +
                                                      +
                                                    • There have been some reports of compiler-optimization bugs affecting this library, (particularly with VC6 versions prior to service patch 5) the workaround is to build the library using /Oityb1 rather than /O2. That @@ -234,26 +234,26 @@ so it's probably worthwhile applying this workaround in normal practice in any case.
                                                    • -
                                                    • +
                                                    • If you have replaced the C++ standard library that comes with VC6, then when you build the library you must ensure that the environment variables "INCLUDE" and "LIB" have been updated to reflect the include and library paths for the new library - see vcvars32.bat (part of your Visual Studio installation) for more details.
                                                    • -
                                                    • +
                                                    • If you are building with the full STLPort v4.x, then use the vc6-stlport.mak file provided and set the environment variable STLPORT_PATH to point to the location of your STLPort installation (Note that the full STLPort libraries appear not to support single-thread static builds).
                                                    • -
                                                    • +
                                                    • If you are building your application with /Zc:wchar_t then you will need to modify the makefile to add /Zc:wchar_t before building the library.
                                                    - + GCC(2.95 and later)

                                                    @@ -302,7 +302,7 @@ see the config library documentation.

                                                    - + Sun Workshop 6.1

                                                    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

                                                    - + Makefiles for Other compilers
                                                    diff --git a/doc/html/boost_regex/introduction_and_overview.html b/doc/html/boost_regex/introduction_and_overview.html index 0b7397fa..29b7e5f0 100644 --- a/doc/html/boost_regex/introduction_and_overview.html +++ b/doc/html/boost_regex/introduction_and_overview.html @@ -3,7 +3,7 @@ Introduction and Overview - + @@ -22,7 +22,7 @@
                                                    PrevUpHomeNext
                                                    -
                                                    +

                                                    Introduction and Overview diff --git a/doc/html/boost_regex/partial_matches.html b/doc/html/boost_regex/partial_matches.html index ecea7888..4594c6e4 100644 --- a/doc/html/boost_regex/partial_matches.html +++ b/doc/html/boost_regex/partial_matches.html @@ -3,7 +3,7 @@ Partial Matches - + @@ -22,7 +22,7 @@
                                                    PrevUpHomeNext
                                                    -
                                                    +
                                                    @@ -54,6 +54,8 @@ +

                                                    +

                                                    @@ -164,14 +166,14 @@ Be aware that using partial matches can sometimes result in somewhat imperfect behavior:

                                                    -
                                                      -
                                                    • +
                                                        +
                                                      • There are some expressions, such as ".*abc" that will always produce a partial match. This problem can be reduced by careful construction of the regular expressions used, or by setting flags like match_not_dot_newline so that expressions like .* can't match past line boundaries.
                                                      • -
                                                      • +
                                                      • Boost.Regex currently prefers leftmost matches to full matches, so for example matching "abc|b" against "ab" produces a partial match against the "ab" rather than a full match against "b". diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html index 88c3ff6a..b70a0f6c 100644 --- a/doc/html/boost_regex/ref.html +++ b/doc/html/boost_regex/ref.html @@ -3,7 +3,7 @@ Reference - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +
                                                        diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index fb150ada..4d42579a 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -3,7 +3,7 @@ bad_expression - + @@ -22,12 +22,12 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +
                                                        - + Synopsis
                                                        #include <boost/pattern_except.hpp>
                                                        @@ -54,7 +54,7 @@
                                                         } // namespace boost
                                                         
                                                        - + Description
                                                        regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
                                                        diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
                                                        index 9b16e6ba..515a636d 100644
                                                        --- a/doc/html/boost_regex/ref/basic_regex.html
                                                        +++ b/doc/html/boost_regex/ref/basic_regex.html
                                                        @@ -3,7 +3,7 @@
                                                         
                                                         basic_regex
                                                         
                                                        -
                                                        +
                                                         
                                                         
                                                         
                                                        @@ -22,12 +22,12 @@
                                                         
                                                        PrevUpHomeNext
                                                        -
                                                        +
                                                        - + Synopsis
                                                        #include <boost/regex.hpp>
                                                        @@ -37,14 +37,14 @@
                                                                 encapsulates regular expression parsing and compilation. The class takes
                                                                 two template parameters:
                                                               

                                                        -
                                                          -
                                                        • +
                                                            +
                                                          • charT: determines the character type, i.e. either char or wchar_t; see charT concept.
                                                          • -
                                                          • +
                                                          • traits: determines the behavior of the character type, for example which character class names are recognized. A default traits class is provided: regex_traits<charT>. See also traits @@ -244,7 +244,7 @@ } // namespace boost
                                                        - + Description

                                                        @@ -318,14 +318,16 @@ then a constant with the same name, type and value is declared within the scope of basic_regex.

                                                        -
                                                        basic_regex();
                                                        +

                                                        +

                                                        +
                                                        basic_regex();
                                                         

                                                        Effects: Constructs an object of class basic_regex.

                                                        -

                                                        Table 1. basic_regex default construction postconditions

                                                        +

                                                        Table 1. basic_regex default construction postconditions

                                                        @@ -383,7 +385,9 @@
                                                        -
                                                        basic_regex(const charT* p, flag_type f = regex_constants::normal);
                                                        +

                                                        +

                                                        +
                                                        basic_regex(const charT* p, flag_type f = regex_constants::normal);
                                                         

                                                        Requires: p shall not @@ -403,7 +407,7 @@ flags specified in f.

                                                        -

                                                        Table 2. Postconditions for basic_regex construction

                                                        +

                                                        Table 2. Postconditions for basic_regex construction

                                                        @@ -485,7 +489,9 @@
                                                        -
                                                        basic_regex(const charT* p1, const charT* p2, 
                                                        +

                                                        +

                                                        +
                                                        basic_regex(const charT* p1, const charT* p2, 
                                                                     flag_type f = regex_constants::normal);
                                                         

                                                        @@ -506,7 +512,7 @@ specified in f.

                                                        -

                                                        Table 3. Postconditions for basic_regex construction

                                                        +

                                                        Table 3. Postconditions for basic_regex construction

                                                        @@ -588,7 +594,9 @@
                                                        -
                                                        basic_regex(const charT* p, size_type len, flag_type f);
                                                        +

                                                        +

                                                        +
                                                        basic_regex(const charT* p, size_type len, flag_type f);
                                                         

                                                        Requires: p shall not @@ -608,7 +616,7 @@ according the option flags specified in f.

                                                        -

                                                        Table 4. Postconditions for basic_regex construction

                                                        +

                                                        Table 4. Postconditions for basic_regex construction

                                                        @@ -691,14 +699,18 @@
                                                        -
                                                        basic_regex(const basic_regex& e);
                                                        +

                                                        +

                                                        +
                                                        basic_regex(const basic_regex& e);
                                                         

                                                        Effects: Constructs an object of class basic_regex as a copy of the object e.

                                                        -
                                                        template <class ST, class SA>
                                                        +

                                                        +

                                                        +
                                                        template <class ST, class SA>
                                                         basic_regex(const basic_string<charT, ST, SA>& s, 
                                                                     flag_type f = regex_constants::normal);
                                                         
                                                        @@ -716,7 +728,7 @@ flags specified in f.

                                                        -

                                                        Table 5. Postconditions for basic_regex construction

                                                        +

                                                        Table 5. Postconditions for basic_regex construction

                                                        @@ -798,7 +810,9 @@
                                                        -
                                                        template <class ForwardIterator>
                                                        +

                                                        +

                                                        +
                                                        template <class ForwardIterator>
                                                         basic_regex(ForwardIterator first, ForwardIterator last, 
                                                                     flag_type f = regex_constants::normal);
                                                         
                                                        @@ -816,7 +830,7 @@ flags specified in f.

                                                        -

                                                        Table 6. Postconditions for basic_regex construction

                                                        +

                                                        Table 6. Postconditions for basic_regex construction

                                                        @@ -898,12 +912,16 @@
                                                        -
                                                        basic_regex& operator=(const basic_regex& e);
                                                        +

                                                        +

                                                        +
                                                        basic_regex& operator=(const basic_regex& e);
                                                         

                                                        Effects: Returns the result of assign(e.str(), e.flags()).

                                                        -
                                                        basic_regex& operator=(const charT* ptr);
                                                        +

                                                        +

                                                        +
                                                        basic_regex& operator=(const charT* ptr);
                                                         

                                                        Requires: p shall not @@ -912,13 +930,17 @@

                                                        Effects: Returns the result of assign(ptr).

                                                        -
                                                        template <class ST, class SA>
                                                        +

                                                        +

                                                        +
                                                        template <class ST, class SA>
                                                         basic_regex& operator=(const basic_string<charT, ST, SA>& p);
                                                         

                                                        Effects: Returns the result of assign(p).

                                                        -
                                                        std::pair<const_iterator, const_iterator> subexpression(size_type n) const;
                                                        +

                                                        +

                                                        +
                                                        std::pair<const_iterator, const_iterator> subexpression(size_type n) const;
                                                         

                                                        Effects: Returns a pair of iterators denoting @@ -932,58 +954,78 @@ set. Argument n must be in within the range 1 <= n < mark_count().

                                                        -
                                                        const_iterator begin() const;
                                                        +

                                                        +

                                                        +
                                                        const_iterator begin() const;
                                                         

                                                        Effects: Returns a starting iterator to a sequence of characters representing the regular expression.

                                                        -
                                                        const_iterator end() const;
                                                        +

                                                        +

                                                        +
                                                        const_iterator end() const;
                                                         

                                                        Effects: Returns termination iterator to a sequence of characters representing the regular expression.

                                                        -
                                                        size_type size() const;
                                                        +

                                                        +

                                                        +
                                                        size_type size() const;
                                                         

                                                        Effects: Returns the length of the sequence of characters representing the regular expression.

                                                        -
                                                        size_type max_size() const;
                                                        +

                                                        +

                                                        +
                                                        size_type max_size() const;
                                                         

                                                        Effects: Returns the maximum length of the sequence of characters representing the regular expression.

                                                        -
                                                        bool empty() const;
                                                        +

                                                        +

                                                        +
                                                        bool empty() const;
                                                         

                                                        Effects: Returns true if the object does not contain a valid regular expression, otherwise false.

                                                        -
                                                        unsigned mark_count() const;
                                                        +

                                                        +

                                                        +
                                                        unsigned mark_count() const;
                                                         

                                                        Effects: Returns the number of marked sub-expressions within the regular expresion.

                                                        -
                                                        basic_regex& assign(const basic_regex& that);
                                                        +

                                                        +

                                                        +
                                                        basic_regex& assign(const basic_regex& that);
                                                         

                                                        Effects: Returns assign(that.str(), that.flags()).

                                                        -
                                                        basic_regex& assign(const charT* ptr, flag_type f = regex_constants::normal);
                                                        +

                                                        +

                                                        +
                                                        basic_regex& assign(const charT* ptr, flag_type f = regex_constants::normal);
                                                         

                                                        Effects: Returns assign(string_type(ptr), f).

                                                        -
                                                        basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
                                                        +

                                                        +

                                                        +
                                                        basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
                                                         

                                                        Effects: Returns assign(string_type(ptr, len), f).

                                                        -
                                                        template <class string_traits, class A>
                                                        +

                                                        +

                                                        +
                                                        template <class string_traits, class A>
                                                         basic_regex& assign(const basic_string<charT, string_traits, A>& s,
                                                                           flag_type f = regex_constants::normal);
                                                         
                                                        @@ -1002,7 +1044,7 @@ in f.

                                                        -

                                                        Table 7. Postconditions for basic_regex::assign

                                                        +

                                                        Table 7. Postconditions for basic_regex::assign

                                                        @@ -1084,7 +1126,9 @@
                                                        -
                                                        template <class InputIterator>
                                                        +

                                                        +

                                                        +
                                                        template <class InputIterator>
                                                         basic_regex& assign(InputIterator first, InputIterator last,
                                                                             flag_type f = regex_constants::normal);
                                                         
                                                        @@ -1096,34 +1140,44 @@

                                                        Effects: Returns assign(string_type(first, last), f).

                                                        -
                                                        flag_type flags() const;
                                                        +

                                                        +

                                                        +
                                                        flag_type flags() const;
                                                         

                                                        Effects: Returns a copy of the regular expression syntax flags that were passed to the object's constructor, or the last call to assign.

                                                        -
                                                        int status() const;
                                                        +

                                                        +

                                                        +
                                                        int status() const;
                                                         

                                                        Effects: Returns zero if the expression contains a valid regular expression, otherwise an error code. This member function is retained for use in environments that cannot use exception handling.

                                                        -
                                                        basic_string<charT> str() const;
                                                        +

                                                        +

                                                        +
                                                        basic_string<charT> str() const;
                                                         

                                                        Effects: Returns a copy of the character sequence passed to the object's constructor, or the last call to assign.

                                                        -
                                                        int compare(basic_regex& e)const;
                                                        +

                                                        +

                                                        +
                                                        int compare(basic_regex& e)const;
                                                         

                                                        Effects: If flags() == e.flags() then returns str().compare(e.str()), otherwise returns flags() - e.flags().

                                                        -
                                                        locale_type imbue(locale_type l);
                                                        +

                                                        +

                                                        +
                                                        locale_type imbue(locale_type l);
                                                         

                                                        Effects: Returns the result of traits_inst.imbue(l) where @@ -1135,7 +1189,9 @@

                                                        Postcondition: empty() == true.

                                                        -
                                                        locale_type getloc() const;
                                                        +

                                                        +

                                                        +
                                                        locale_type getloc() const;
                                                         

                                                        Effects: Returns the result of traits_inst.getloc() @@ -1143,7 +1199,9 @@ initialized) instance of the template parameter traits stored within the object.

                                                        -
                                                        void swap(basic_regex& e) throw();
                                                        +

                                                        +

                                                        +
                                                        void swap(basic_regex& e) throw();
                                                         

                                                        Effects: Swaps the contents of the two regular @@ -1170,7 +1228,9 @@ code that may need to be ported to other implementations of basic_regex.

                                                        -
                                                        template <class charT, class traits>
                                                        +

                                                        +

                                                        +
                                                        template <class charT, class traits>
                                                         bool operator == (const basic_regex<charT, traits>& lhs,
                                                                           const basic_regex<charT, traits>& rhs);
                                                         
                                                        @@ -1178,7 +1238,9 @@ Effects: Returns lhs.compare(rhs) == 0.

                                                        -
                                                        template <class charT, class traits>
                                                        +

                                                        +

                                                        +
                                                        template <class charT, class traits>
                                                         bool operator != (const basic_regex<charT, traits>& lhs,
                                                                           const basic_regex<charT, traits>& rhs);
                                                         
                                                        @@ -1186,7 +1248,9 @@ Effects: Returns lhs.compare(rhs) != 0.

                                                        -
                                                        template <class charT, class traits>
                                                        +

                                                        +

                                                        +
                                                        template <class charT, class traits>
                                                         bool operator < (const basic_regex<charT, traits>& lhs,
                                                                        const basic_regex<charT, traits>& rhs);
                                                         
                                                        @@ -1194,7 +1258,9 @@ Effects: Returns lhs.compare(rhs) < 0.

                                                        -
                                                        template <class charT, class traits>
                                                        +

                                                        +

                                                        +
                                                        template <class charT, class traits>
                                                         bool operator <= (const basic_regex<charT, traits>& lhs,
                                                                           const basic_regex<charT, traits>& rhs);
                                                         
                                                        @@ -1202,7 +1268,9 @@ Effects: Returns lhs.compare(rhs) <= 0.

                                                        -
                                                        template <class charT, class traits>
                                                        +

                                                        +

                                                        +
                                                        template <class charT, class traits>
                                                         bool operator >= (const basic_regex<charT, traits>& lhs,
                                                                           const basic_regex<charT, traits>& rhs);
                                                         
                                                        @@ -1210,7 +1278,9 @@ Effects: Returns lhs.compare(rhs) >= 0.

                                                        -
                                                        template <class charT, class traits>
                                                        +

                                                        +

                                                        +
                                                        template <class charT, class traits>
                                                         bool operator > (const basic_regex<charT, traits>& lhs,
                                                                        const basic_regex<charT, traits>& rhs);
                                                         
                                                        @@ -1228,7 +1298,9 @@ outputs the textual representation of the expression to the stream.

                                                        -
                                                        template <class charT, class io_traits, class re_traits>
                                                        +

                                                        +

                                                        +
                                                        template <class charT, class io_traits, class re_traits>
                                                         basic_ostream<charT, io_traits>&
                                                            operator << (basic_ostream<charT, io_traits>& os
                                                                        const basic_regex<charT, re_traits>& e);
                                                        @@ -1236,7 +1308,9 @@
                                                         

                                                        Effects: Returns (os << e.str()).

                                                        -
                                                        template <class charT, class traits>
                                                        +

                                                        +

                                                        +
                                                        template <class charT, class traits>
                                                         void swap(basic_regex<charT, traits>& lhs,
                                                                  basic_regex<charT, traits>& rhs);
                                                         
                                                        diff --git a/doc/html/boost_regex/ref/concepts.html b/doc/html/boost_regex/ref/concepts.html index 9a9dc33c..9bac63c8 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -3,7 +3,7 @@ Concepts - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +
                                                        diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index 5a12e5f8..71008497 100644 --- a/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -3,7 +3,7 @@ charT Requirements - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +
                                                        diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index f660e0ca..1fcffdb9 100644 --- a/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -3,7 +3,7 @@ Iterator Requirements - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +

                                                        Iterator Requirements diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index aa7aae58..f56b26ef 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -3,7 +3,7 @@ Traits Class Requirements - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +

                                                        Traits Class Requirements @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

                                                        - + Minimal requirements.
                                                        @@ -105,6 +105,8 @@

                                                        +

                                                        +

                                                        @@ -125,6 +127,8 @@

                                                        +

                                                        +

                                                        @@ -378,7 +382,7 @@
                                                        - + Additional Optional Requirements
                                                        diff --git a/doc/html/boost_regex/ref/deprecated_interfaces.html b/doc/html/boost_regex/ref/deprecated_interfaces.html index d26206d1..5b8b11ad 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces.html @@ -3,7 +3,7 @@ Deprecated Interfaces - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +
                                                        diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html index 70168e0f..39197147 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html @@ -3,7 +3,7 @@ High Level Class RegEx (Deprecated) - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +

                                                        High Level Class RegEx (Deprecated) diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index bb215498..fb471c26 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -3,7 +3,7 @@ regex_format (Deprecated) - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +

                                                        regex_format (Deprecated) @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

                                                        - + Algorithm regex_format
                                                        diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html index 3a86678b..6cf70cc6 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html @@ -3,7 +3,7 @@ regex_grep (Deprecated) - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +

                                                        regex_grep (Deprecated) diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html index 11bb517d..77301239 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html @@ -3,7 +3,7 @@ regex_split (deprecated) - + @@ -22,7 +22,7 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +

                                                        regex_split (deprecated) diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 432d5fc1..d3247b4b 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -3,7 +3,7 @@ error_type - + @@ -22,12 +22,12 @@
                                                        PrevUpHomeNext
                                                        -
                                                        +
                                                        - + Synopsis

                                                        @@ -57,7 +57,7 @@ } // namespace boost

                                                        - + Description

                                                        diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index cf403998..d0c21bec 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -3,7 +3,7 @@ match_flag_type - + @@ -22,7 +22,7 @@

                                                        PrevUpHomeNext
                                                        -
                                                        +
                                                        @@ -69,7 +69,7 @@ } // namespace boost
                                                        - + Description

                                                        diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index b4982000..c3b85d95 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -3,7 +3,7 @@ match_results - + @@ -22,12 +22,12 @@

                                                        PrevUpHomeNext
                                                        -
                                                        +
                                                        - + Synopsis
                                                        #include <boost/regex.hpp>
                                                        @@ -167,7 +167,7 @@
                                                                  match_results<BidirectionalIterator, Allocator>& m2);
                                                         
                                                        - + Description

                                                        @@ -175,7 +175,9 @@ a copy of the Allocator argument is used for any memory allocation performed by the constructor or member functions during the lifetime of the object.

                                                        -
                                                        match_results(const Allocator& a = Allocator());
                                                        +

                                                        +

                                                        +
                                                        match_results(const Allocator& a = Allocator());
                                                         

                                                        Effects: Constructs an object of class @@ -238,13 +240,17 @@

                                                        -
                                                        match_results(const match_results& m);
                                                        +

                                                        +

                                                        +
                                                        match_results(const match_results& m);
                                                         

                                                        Effects: Constructs an object of class match_results, as a copy of m.

                                                        -
                                                        match_results& operator=(const match_results& m);
                                                        +

                                                        +

                                                        +
                                                        match_results& operator=(const match_results& m);
                                                         

                                                        Effects: Assigns m to *this. The postconditions @@ -366,26 +372,34 @@

                                                        -
                                                        size_type size()const;
                                                        +

                                                        +

                                                        +
                                                        size_type size()const;
                                                         

                                                        Effects: Returns the number of sub_match elements stored in *this; that is the number of marked sub-expressions in the regular expression that was matched plus one.

                                                        -
                                                        size_type max_size()const;
                                                        +

                                                        +

                                                        +
                                                        size_type max_size()const;
                                                         

                                                        Effects: Returns the maximum number of sub_match elements that can be stored in *this.

                                                        -
                                                        bool empty()const;
                                                        +

                                                        +

                                                        +
                                                        bool empty()const;
                                                         

                                                        Effects: Returns size() == 0.

                                                        -
                                                        difference_type length(int sub = 0)const;
                                                        +

                                                        +

                                                        +
                                                        difference_type length(int sub = 0)const;
                                                         difference_type length(const char_type* sub)const;
                                                         template <class charT>
                                                         difference_type length(const charT* sub)const;
                                                        @@ -418,7 +432,9 @@
                                                                 as an argument, even when the underlying character type of the expression
                                                                 being matched may be something more exotic such as a Unicode character type.
                                                               

                                                        -
                                                        difference_type position(unsigned int sub = 0)const;
                                                        +

                                                        +

                                                        +
                                                        difference_type position(unsigned int sub = 0)const;
                                                         difference_type position(const char_type* sub)const;
                                                         template <class charT>
                                                         difference_type position(const charT* sub)const;
                                                        @@ -454,7 +470,9 @@
                                                                 as an argument, even when the underlying character type of the expression
                                                                 being matched may be something more exotic such as a Unicode character type.
                                                               

                                                        -
                                                        string_type str(int sub = 0)const;
                                                        +

                                                        +

                                                        +
                                                        string_type str(int sub = 0)const;
                                                         string_type str(const char_type* sub)const;
                                                         template <class Traits, class A>
                                                         string_type str(const std::basic_string<char_type, Traits, A>& sub)const;
                                                        @@ -490,7 +508,9 @@
                                                                 as an argument, even when the underlying character type of the expression
                                                                 being matched may be something more exotic such as a Unicode character type.
                                                               

                                                        -
                                                        const_reference operator[](int n) const;
                                                        +

                                                        +

                                                        +
                                                        const_reference operator[](int n) const;
                                                         const_reference operator[](const char_type* n) const;
                                                         template <class Traits, class A>
                                                         const_reference operator[](const std::basic_string<char_type, Traits, A>& n) const;
                                                        @@ -533,7 +553,9 @@
                                                                 as an argument, even when the underlying character type of the expression
                                                                 being matched may be something more exotic such as a Unicode character type.
                                                               

                                                        -
                                                        const_reference prefix()const;
                                                        +

                                                        +

                                                        +
                                                        const_reference prefix()const;
                                                         

                                                        Requires: that the match_results object @@ -548,7 +570,9 @@ object representing the character sequence from the start of the string being matched or searched, to the start of the match found.

                                                        -
                                                        const_reference suffix()const;
                                                        +

                                                        +

                                                        +
                                                        const_reference suffix()const;
                                                         

                                                        Requires: that the match_results object @@ -563,19 +587,25 @@ object representing the character sequence from the end of the match found to the end of the string being matched or searched.

                                                        -
                                                        const_iterator begin()const;
                                                        +

                                                        +

                                                        +
                                                        const_iterator begin()const;
                                                         

                                                        Effects: Returns a starting iterator that enumerates over all the marked sub-expression matches stored in *this.

                                                        -
                                                        const_iterator end()const;
                                                        +

                                                        +

                                                        +
                                                        const_iterator end()const;
                                                         

                                                        Effects: Returns a terminating iterator that enumerates over all the marked sub-expression matches stored in *this.

                                                        -
                                                        template <class OutputIterator, class Formatter>
                                                        +

                                                        +

                                                        +
                                                        template <class OutputIterator, class Formatter>
                                                         OutputIterator format(OutputIterator out,
                                                                               Formatter fmt,
                                                                               match_flag_type flags = format_default);
                                                        @@ -625,16 +655,16 @@
                                                                 then depending on the number of arguments the function object accepts, it
                                                                 will either:
                                                               

                                                        -
                                                          -
                                                        • +
                                                            +
                                                          • Call fmt(*this) and copy the string returned to OutputIterator out.
                                                          • -
                                                          • +
                                                          • Call fmt(*this, out).
                                                          • -
                                                          • +
                                                          • Call fmt(*this, out, flags).
                                                          @@ -648,7 +678,9 @@

                                                          Returns: out.

                                                          -
                                                          template <class Formatter>
                                                          +

                                                          +

                                                          +
                                                          template <class Formatter>
                                                           string_type format(Formatter fmt,
                                                                              match_flag_type flags = format_default);
                                                           
                                                          @@ -691,17 +723,17 @@ then depending on the number of arguments the function object accepts, it will either:

                                                          -
                                                            -
                                                          • +
                                                              +
                                                            • Call fmt(*this) and return the result.
                                                            • -
                                                            • +
                                                            • Call fmt(*this, unspecified-output-iterator), where unspecified-output-iterator is an unspecified OutputIterator type used to copy the output to the string result.
                                                            • -
                                                            • +
                                                            • Call fmt(*this, unspecified-output-iterator, flags), where unspecified-output-iterator is an unspecified OutputIterator @@ -711,13 +743,17 @@

                                                              See the format syntax guide for more information.

                                                              -
                                                              allocator_type get_allocator()const;
                                                              +

                                                              +

                                                              +
                                                              allocator_type get_allocator()const;
                                                               

                                                              Effects: Returns a copy of the Allocator that was passed to the object's constructor.

                                                              -
                                                              void swap(match_results& that);
                                                              +

                                                              +

                                                              +
                                                              void swap(match_results& that);
                                                               

                                                              Effects: Swaps the contents of the two sequences. @@ -730,7 +766,9 @@

                                                              Complexity: constant time.

                                                              -
                                                              typedef typename value_type::capture_sequence_type capture_sequence_type;
                                                              +

                                                              +

                                                              +
                                                              typedef typename value_type::capture_sequence_type capture_sequence_type;
                                                               

                                                              Defines an implementation-specific type that satisfies the requirements of @@ -738,7 +776,9 @@ whose value_type is a sub_match<BidirectionalIterator>. This type happens to be std::vector<sub_match<BidirectionalIterator> >, but you shouldn't actually rely on that.

                                                              -
                                                              const capture_sequence_type& captures(std::size_t i)const; 
                                                              +

                                                              +

                                                              +
                                                              const capture_sequence_type& captures(std::size_t i)const; 
                                                               

                                                              Requires: that the match_results object @@ -765,23 +805,25 @@ Rationale: Enabling this feature has several consequences:

                                                              -
                                                                -
                                                              • +
                                                                  +
                                                                • sub_match occupies more memory resulting in complex expressions running out of memory or stack space more quickly during matching.
                                                                • -
                                                                • +
                                                                • The matching algorithms are less efficient at handling some features (independent sub-expressions for example), even when match_extra is not used.
                                                                • -
                                                                • +
                                                                • The matching algorithms are much less efficient (i.e. slower), when match_extra is used. Mostly this is down to the extra memory allocations that have to take place.
                                                                -
                                                                template <class BidirectionalIterator, class Allocator>
                                                                +

                                                                +

                                                                +
                                                                template <class BidirectionalIterator, class Allocator>
                                                                 bool operator == (const match_results<BidirectionalIterator, Allocator>& m1,
                                                                                   const match_results<BidirectionalIterator, Allocator>& m2);
                                                                 
                                                                @@ -789,7 +831,9 @@ Effects: Compares the two sequences for equality.

                                                                -
                                                                template <class BidirectionalIterator, class Allocator>
                                                                +

                                                                +

                                                                +
                                                                template <class BidirectionalIterator, class Allocator>
                                                                 bool operator != (const match_results<BidirectionalIterator, Allocator>& m1,
                                                                                   const match_results<BidirectionalIterator, Allocator>& m2);
                                                                 
                                                                @@ -797,7 +841,9 @@ Effects: Compares the two sequences for inequality.

                                                                -
                                                                template <class charT, class traits, class BidirectionalIterator, class Allocator>
                                                                +

                                                                +

                                                                +
                                                                template <class charT, class traits, class BidirectionalIterator, class Allocator>
                                                                 basic_ostream<charT, traits>&
                                                                    operator << (basic_ostream<charT, traits>& os,
                                                                                const match_results<BidirectionalIterator, Allocator>& m);
                                                                @@ -808,7 +854,9 @@
                                                                         << m.str();
                                                                         Returns os.
                                                                       

                                                                -
                                                                template <class BidirectionalIterator, class Allocator>
                                                                +

                                                                +

                                                                +
                                                                template <class BidirectionalIterator, class Allocator>
                                                                 void swap(match_results<BidirectionalIterator, Allocator>& m1,
                                                                          match_results<BidirectionalIterator, Allocator>& m2);
                                                                 
                                                                diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index a37509ef..8de3b3bc 100644 --- a/doc/html/boost_regex/ref/non_std_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings.html @@ -3,7 +3,7 @@ Interfacing With Non-Standard String Types - + @@ -22,7 +22,7 @@
                                                                PrevUpHomeNext
                                                                -
                                                                +

                                                                Interfacing With Non-Standard String Types diff --git a/doc/html/boost_regex/ref/non_std_strings/icu.html b/doc/html/boost_regex/ref/non_std_strings/icu.html index 113c3b2e..082078b5 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu.html @@ -3,7 +3,7 @@ Working With Unicode and ICU String Types - + @@ -22,7 +22,7 @@
                                                                PrevUpHomeNext
                                                                -
                                                                +

                                                                Working With Unicode and ICU String Types diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/intro.html b/doc/html/boost_regex/ref/non_std_strings/icu/intro.html index 8b6c20b8..03992a0d 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/intro.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/intro.html @@ -3,7 +3,7 @@ Introduction to using Regex with ICU - + @@ -22,7 +22,7 @@
                                                                PrevUpHomeNext
                                                                -
                                                                +
                                                                Introduction to using Regex with ICU @@ -45,16 +45,16 @@

                                                                The header will enable you to:

                                                                -
                                                                  -
                                                                • +
                                                                    +
                                                                  • Create regular expressions that treat Unicode strings as sequences of UTF-32 code points.
                                                                  • -
                                                                  • +
                                                                  • Create regular expressions that support various Unicode data properties, including character classification.
                                                                  • -
                                                                  • +
                                                                  • Transparently search Unicode strings that are encoded as either UTF-8, UTF-16 or UTF-32.
                                                                  • diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index f00c3a25..90b1cd2f 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -3,7 +3,7 @@ Unicode Regular Expression Algorithms - + @@ -22,7 +22,7 @@
                                                                    PrevUpHomeNext
                                                                    -
                                                                    +
                                                                    Unicode Regular Expression Algorithms @@ -43,7 +43,7 @@ on to the "real" algorithm.

                                                                    - + u32regex_match

                                                                    @@ -89,7 +89,7 @@ }

                                                                - + u32regex_search

                                                                @@ -128,7 +128,7 @@ }

                                                                - + u32regex_replace

                                                                diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 20d775a4..e763c96f 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -3,7 +3,7 @@ Unicode Aware Regex Iterators - + @@ -22,13 +22,13 @@

                                                                PrevUpHomeNext
                                                                -
                                                                +
                                                                - + u32regex_iterator

                                                                @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

                                                                - + u32regex_token_iterator

                                                                diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html index ae62c941..8f26ad15 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html @@ -3,7 +3,7 @@ Unicode regular expression types - + @@ -22,7 +22,7 @@

                                                                PrevUpHomeNext
                                                                -
                                                                +
                                                                Unicode regular expression types diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html index 553cf672..2b698c21 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html @@ -3,7 +3,7 @@ Using Boost Regex With MFC Strings - + @@ -22,7 +22,7 @@
                                                                PrevUpHomeNext
                                                                -
                                                                +

                                                                Using Boost Regex With MFC Strings diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 2a9cf74b..852238c2 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -3,7 +3,7 @@ Overloaded Algorithms For MFC String Types - + @@ -22,7 +22,7 @@
                                                                PrevUpHomeNext
                                                                -
                                                                +
                                                                Overloaded Algorithms For MFC String Types @@ -34,7 +34,7 @@ here they are anyway:

                                                                - + regex_match

                                                                @@ -82,7 +82,7 @@ }

                                                                - + regex_match (second overload)
                                                                @@ -110,7 +110,7 @@ }
                                                                - + regex_search

                                                                @@ -149,7 +149,7 @@ }

                                                                - + regex_search (second overload)
                                                                @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

                                                                - + regex_replace

                                                                diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html index 8707b322..c5a496df 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html @@ -3,7 +3,7 @@ Introduction to Boost.Regex and MFC Strings - + @@ -22,7 +22,7 @@

                                                                PrevUpHomeNext
                                                                -
                                                                +
                                                                Introduction to Boost.Regex and MFC Strings diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index f42728e5..76fadde2 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -3,7 +3,7 @@ Iterating Over the Matches Within An MFC String - + @@ -22,7 +22,7 @@
                                                                PrevUpHomeNext
                                                                -
                                                                +
                                                              - + regex_token_iterator creation helpers
                                                              diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html index ab2cdebb..6c058afe 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html @@ -3,7 +3,7 @@ Regular Expression Creation From an MFC String - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +
                                                              Regular Expression Creation From an MFC String diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html index 26d9aae0..fb3e7f7b 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html @@ -3,7 +3,7 @@ Regex Types Used With MFC Strings - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +
                                                              Regex Types Used With MFC Strings diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index c8cfb3e4..7de63653 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -3,7 +3,7 @@ POSIX Compatible C API's - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +
                                                              @@ -162,8 +162,10 @@ upon the macro UNICODE.

                                                              -
                                                              - +

                                                              +

                                                              +
                                                              + regcomp

                                                              @@ -374,8 +376,10 @@

                                                              -
                                                              - +

                                                              +

                                                              +
                                                              + regerror

                                                              @@ -460,8 +464,10 @@ equal to buf_size then regerror will have to be called again with a larger buffer.

                                                              -
                                                              - +

                                                              +

                                                              +
                                                              + regexec

                                                              @@ -528,8 +534,10 @@

                                                              -
                                                              - +

                                                              +

                                                              +
                                                              + regfree

                                                              diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index a7f82710..ec44acb1 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -3,7 +3,7 @@ regex_iterator - + @@ -22,7 +22,7 @@

                                                              PrevUpHomeNext
                                                              -
                                                              +
                                                              @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);
                                                              - + Description

                                                              @@ -86,13 +86,17 @@ is constructed from a pair of iterators, and enumerates all occurrences of a regular expression within that iterator range.

                                                              -
                                                              regex_iterator();
                                                              +

                                                              +

                                                              +
                                                              regex_iterator();
                                                               

                                                              Effects: constructs an end of sequence regex_iterator.

                                                              -
                                                              regex_iterator(BidirectionalIterator a, BidirectionalIterator b, 
                                                              +

                                                              +

                                                              +
                                                              regex_iterator(BidirectionalIterator a, BidirectionalIterator b, 
                                                                              const regex_type& re, 
                                                                              match_flag_type m = match_default);
                                                               
                                                              @@ -110,7 +114,9 @@ matcher exhausts its permitted memory allocation (if Boost.Regex is configured in non-recursive mode).

                                                              -
                                                              regex_iterator(const regex_iterator& that);
                                                              +

                                                              +

                                                              +
                                                              regex_iterator(const regex_iterator& that);
                                                               

                                                              Effects: constructs a copy of that. @@ -118,7 +124,9 @@

                                                              Postconditions: *this == that.

                                                              -
                                                              regex_iterator& operator=(const regex_iterator&);
                                                              +

                                                              +

                                                              +
                                                              regex_iterator& operator=(const regex_iterator&);
                                                               

                                                              Effects: sets *this equal to those in that. @@ -126,18 +134,24 @@

                                                              Postconditions: *this == that.

                                                              -
                                                              bool operator==(const regex_iterator& that)const;
                                                              +

                                                              +

                                                              +
                                                              bool operator==(const regex_iterator& that)const;
                                                               

                                                              Effects: returns true if *this is equal to that.

                                                              -
                                                              bool operator!=(const regex_iterator&)const;
                                                              +

                                                              +

                                                              +
                                                              bool operator!=(const regex_iterator&)const;
                                                               

                                                              Effects: returns !(*this == that).

                                                              -
                                                              const value_type& operator*()const;
                                                              +

                                                              +

                                                              +
                                                              const value_type& operator*()const;
                                                               

                                                              Effects: dereferencing a regex_iterator object it yields @@ -360,12 +374,16 @@

                                                            -
                                                            const value_type* operator->()const;
                                                            +

                                                            +

                                                            +
                                                            const value_type* operator->()const;
                                                             

                                                            Effects: returns &(*this).

                                                            -
                                                            regex_iterator& operator++();
                                                            +

                                                            +

                                                            +
                                                            regex_iterator& operator++();
                                                             

                                                            Effects: moves the iterator to the next @@ -388,7 +406,9 @@

                                                            Returns: *this.

                                                            -
                                                            regex_iterator operator++(int);
                                                            +

                                                            +

                                                            +
                                                            regex_iterator operator++(int);
                                                             

                                                            Effects: constructs a copy result of *this, then @@ -397,7 +417,9 @@

                                                            Returns: result.

                                                            -
                                                            template <class charT, class traits> 
                                                            +

                                                            +

                                                            +
                                                            template <class charT, class traits> 
                                                             regex_iterator<const charT*, charT, traits>
                                                                make_regex_iterator(const charT* p, const basic_regex<charT, traits>& e, 
                                                                                  regex_constants::match_flag_type m = regex_constants::match_default); 
                                                            @@ -415,7 +437,7 @@
                                                                     m.
                                                                   

                                                            - + Examples

                                                            diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 0d416d71..2a47763d 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -3,7 +3,7 @@ regex_match - + @@ -22,7 +22,7 @@

                                                            PrevUpHomeNext
                                                            -
                                                            +
                                                            @@ -80,7 +80,7 @@ match_flag_type flags = match_default);
                                                            - + Description
                                                            template <class BidirectionalIterator, class Allocator, class charT, class traits>
                                                            @@ -361,7 +361,7 @@
                                                                     Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
                                                                   

                                                            - + Examples

                                                            diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index da81c097..8caec3fc 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -3,7 +3,7 @@ regex_replace - + @@ -22,7 +22,7 @@

                                                            PrevUpHomeNext
                                                            -
                                                            +
                                                            @@ -53,7 +53,7 @@ match_flag_type flags = match_default);
                                                            - + Description
                                                            template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
                                                            @@ -199,7 +199,7 @@
                                                                     and then returns result.
                                                                   

                                                            - + Examples

                                                            diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 20d0bcf2..01d22338 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -3,7 +3,7 @@ regex_search - + @@ -22,7 +22,7 @@

                                                            PrevUpHomeNext
                                                            -
                                                            +
                                                            @@ -73,7 +73,7 @@ match_flag_type flags = match_default);
                                                            - + Description
                                                            template <class BidirectionalIterator, class Allocator, class charT, class traits>
                                                            @@ -357,7 +357,7 @@
                                                                     Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
                                                                   

                                                            - + Examples

                                                            diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 10947062..2e1c83ef 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -3,7 +3,7 @@ regex_token_iterator - + @@ -22,7 +22,7 @@

                                                            PrevUpHomeNext
                                                            -
                                                            +
                                                            @@ -136,15 +136,19 @@ regex_constants::match_flag_type m = regex_constants::match_default);
                                                            - + Description
                                                            -
                                                            regex_token_iterator();
                                                            +

                                                            +

                                                            +
                                                            regex_token_iterator();
                                                             

                                                            Effects: constructs an end of sequence iterator.

                                                            -
                                                            regex_token_iterator(BidirectionalIterator a, 
                                                            +

                                                            +

                                                            +
                                                            regex_token_iterator(BidirectionalIterator a, 
                                                                                  BidirectionalIterator b, 
                                                                                  const regex_type& re, 
                                                                                  int submatch = 0, 
                                                            @@ -172,7 +176,9 @@
                                                                     matcher exhausts its permitted memory allocation (if Boost.Regex is configured
                                                                     in non-recursive mode).
                                                                   

                                                            -
                                                            regex_token_iterator(BidirectionalIterator a, 
                                                            +

                                                            +

                                                            +
                                                            regex_token_iterator(BidirectionalIterator a, 
                                                                                  BidirectionalIterator b, 
                                                                                  const regex_type& re, 
                                                                                  const std::vector<int>& submatches, 
                                                            @@ -204,7 +210,9 @@
                                                                     matcher exhausts its permitted memory allocation (if Boost.Regex is configured
                                                                     in non-recursive mode).
                                                                   

                                                            -
                                                            template <std::size_t N>
                                                            +

                                                            +

                                                            +
                                                            template <std::size_t N>
                                                             regex_token_iterator(BidirectionalIterator a, 
                                                                                  BidirectionalIterator b, 
                                                                                  const regex_type& re, 
                                                            @@ -235,7 +243,9 @@
                                                                     matcher exhausts its permitted memory allocation (if Boost.Regex is configured
                                                                     in non-recursive mode).
                                                                   

                                                            -
                                                            regex_token_iterator(const regex_token_iterator& that);
                                                            +

                                                            +

                                                            +
                                                            regex_token_iterator(const regex_token_iterator& that);
                                                             

                                                            Effects: constructs a copy of that. @@ -243,7 +253,9 @@

                                                            Postconditions: *this == that.

                                                            -
                                                            regex_token_iterator& operator=(const regex_token_iterator& that);
                                                            +

                                                            +

                                                            +
                                                            regex_token_iterator& operator=(const regex_token_iterator& that);
                                                             

                                                            Effects: sets *this to be equal to that. @@ -251,28 +263,38 @@

                                                            Postconditions: *this == that.

                                                            -
                                                            bool operator==(const regex_token_iterator&)const;
                                                            +

                                                            +

                                                            +
                                                            bool operator==(const regex_token_iterator&)const;
                                                             

                                                            Effects: returns true if *this is the same position as that.

                                                            -
                                                            bool operator!=(const regex_token_iterator&)const;
                                                            +

                                                            +

                                                            +
                                                            bool operator!=(const regex_token_iterator&)const;
                                                             

                                                            Effects: returns !(*this == that).

                                                            -
                                                            const value_type& operator*()const;
                                                            +

                                                            +

                                                            +
                                                            const value_type& operator*()const;
                                                             

                                                            Effects: returns the current character sequence being enumerated.

                                                            -
                                                            const value_type* operator->()const;
                                                            +

                                                            +

                                                            +
                                                            const value_type* operator->()const;
                                                             

                                                            Effects: returns &(*this).

                                                            -
                                                            regex_token_iterator& operator++();
                                                            +

                                                            +

                                                            +
                                                            regex_token_iterator& operator++();
                                                             

                                                            Effects: Moves on to the next character @@ -289,7 +311,9 @@

                                                            Returns: *this.

                                                            -
                                                            regex_token_iterator& operator++(int);
                                                            +

                                                            +

                                                            +
                                                            regex_token_iterator& operator++(int);
                                                             

                                                            Effects: constructs a copy result of *this, then @@ -298,7 +322,9 @@

                                                            Returns: result.

                                                            -
                                                            template <class charT, class traits>
                                                            +

                                                            +

                                                            +
                                                            template <class charT, class traits>
                                                             regex_token_iterator<const charT*, charT, traits> 
                                                                make_regex_token_iterator(
                                                                      const charT* p, 
                                                            @@ -357,7 +383,7 @@
                                                                     m.
                                                                   

                                                            - + Examples

                                                            diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 8c69f5bc..874fd107 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -3,7 +3,7 @@ regex_traits - + @@ -22,7 +22,7 @@

                                                            PrevUpHomeNext
                                                            -
                                                            +
                                                            @@ -46,7 +46,7 @@ } // namespace boost
                                                            - + Description

                                                            @@ -54,19 +54,19 @@ just a thin wrapper around an actual implemention class, which may be one of:

                                                            -
                                                              -
                                                            • +
                                                                +
                                                              • c_regex_traits: this class is deprecated, it wraps the C locale, and is used as the default implementation when the platform is not Win32, and the C++ locale is not available.
                                                              • -
                                                              • +
                                                              • cpp_regex_traits: the default traits class for non-Win32 platforms, allows the regex class to be imbued with a std::locale instance.
                                                              • -
                                                              • +
                                                              • w32_regex_traits: the default traits class implementation on Win32 platforms, allows the regex class to be imbued with an LCID. @@ -76,12 +76,12 @@ The default behavior can be altered by defining one of the following configuration macros in boost/regex/user.hpp

                                                                -
                                                                  -
                                                                • +
                                                                    +
                                                                  • BOOST_REGEX_USE_C_LOCALE: makes c_regex_traits the default.
                                                                  • -
                                                                  • +
                                                                  • BOOST_REGEX_USE_CPP_LOCALE: makes cpp_regex_traits the default.
                                                                  • diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index b4545ca5..6d90313d 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -3,7 +3,7 @@ sub_match - + @@ -22,7 +22,7 @@
                                                                    PrevUpHomeNext
                                                                    -
                                                                    +
                                                                    @@ -329,56 +329,74 @@ } // namespace boost
                                                            - + Description
                                                            - + Members
                                                            -
                                                            typedef typename std::iterator_traits<iterator>::value_type value_type;
                                                            +

                                                            +

                                                            +
                                                            typedef typename std::iterator_traits<iterator>::value_type value_type;
                                                             

                                                            The type pointed to by the iterators.

                                                            -
                                                            typedef typename std::iterator_traits<iterator>::difference_type difference_type;
                                                            +

                                                            +

                                                            +
                                                            typedef typename std::iterator_traits<iterator>::difference_type difference_type;
                                                             

                                                            A type that represents the difference between two iterators.

                                                            -
                                                            typedef BidirectionalIterator iterator;
                                                            +

                                                            +

                                                            +
                                                            typedef BidirectionalIterator iterator;
                                                             

                                                            The iterator type.

                                                            -
                                                            iterator first
                                                            +

                                                            +

                                                            +
                                                            iterator first
                                                             

                                                            An iterator denoting the position of the start of the match.

                                                            -
                                                            iterator second
                                                            +

                                                            +

                                                            +
                                                            iterator second
                                                             

                                                            An iterator denoting the position of the end of the match.

                                                            -
                                                            bool matched
                                                            +

                                                            +

                                                            +
                                                            bool matched
                                                             

                                                            A Boolean value denoting whether this sub-expression participated in the match.

                                                            -
                                                            static difference_type length();
                                                            +

                                                            +

                                                            +
                                                            static difference_type length();
                                                             

                                                            Effects: returns the length of this matched sub-expression, or 0 if this sub-expression was not matched: matched ? distance(first, second) : 0).

                                                            -
                                                            operator basic_string<value_type>()const;
                                                            +

                                                            +

                                                            +
                                                            operator basic_string<value_type>()const;
                                                             

                                                            Effects: converts *this into a string: returns (matched ? basic_string<value_type>(first, second) : basic_string<value_type>()).

                                                            -
                                                            basic_string<value_type> str()const;
                                                            +

                                                            +

                                                            +
                                                            basic_string<value_type> str()const;
                                                             

                                                            Effects: returns a string representation @@ -386,25 +404,33 @@ (matched ? basic_string<value_type>(first, second) : basic_string<value_type>()).

                                                            -
                                                            int compare(const sub_match& s)const;
                                                            +

                                                            +

                                                            +
                                                            int compare(const sub_match& s)const;
                                                             

                                                            Effects: performs a lexical comparison to s: returns str().compare(s.str()).

                                                            -
                                                            int compare(const basic_string<value_type>& s)const;
                                                            +

                                                            +

                                                            +
                                                            int compare(const basic_string<value_type>& s)const;
                                                             

                                                            Effects: compares *this to the string s: returns str().compare(s).

                                                            -
                                                            int compare(const value_type* s)const;
                                                            +

                                                            +

                                                            +
                                                            int compare(const value_type* s)const;
                                                             

                                                            Effects: compares *this to the null-terminated string s: returns str().compare(s).

                                                            -
                                                            typedef implementation-private capture_sequence_type;
                                                            +

                                                            +

                                                            +
                                                            typedef implementation-private capture_sequence_type;
                                                             

                                                            Defines an implementation-specific type that satisfies the requirements of @@ -412,7 +438,9 @@ whose value_type is a sub_match<BidirectionalIterator>. This type happens to be std::vector<sub_match<BidirectionalIterator> >, but you shouldn't actually rely on that.

                                                            -
                                                            const capture_sequence_type& captures()const; 
                                                            +

                                                            +

                                                            +
                                                            const capture_sequence_type& captures()const; 
                                                             

                                                            Effects: returns a sequence containing all @@ -429,28 +457,30 @@ Rationale: Enabling this feature has several consequences:

                                                            -
                                                              -
                                                            • +
                                                                +
                                                              • sub_match occupies more memory resulting in complex expressions running out of memory or stack space more quickly during matching.
                                                              • -
                                                              • +
                                                              • The matching algorithms are less efficient at handling some features (independent sub-expressions for example), even when match_extra is not used.
                                                              • -
                                                              • +
                                                              • The matching algorithms are much less efficient (i.e. slower), when match_extra is used. Mostly this is down to the extra memory allocations that have to take place.
                                                              - + sub_match non-member operators
                                                              -
                                                              template <class BidirectionalIterator>
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator>
                                                               bool operator == (const sub_match<BidirectionalIterator>& lhs,
                                                                                 const sub_match<BidirectionalIterator>& rhs);
                                                               
                                                              @@ -458,7 +488,9 @@ Effects: returns lhs.compare(rhs) == 0.

                                                              -
                                                              template <class BidirectionalIterator>
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator>
                                                               bool operator != (const sub_match<BidirectionalIterator>& lhs,
                                                                                 const sub_match<BidirectionalIterator>& rhs);
                                                               
                                                              @@ -466,7 +498,9 @@ Effects: returns lhs.compare(rhs) != 0.

                                                              -
                                                              template <class BidirectionalIterator>
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator>
                                                               bool operator < (const sub_match<BidirectionalIterator>& lhs,
                                                                              const sub_match<BidirectionalIterator>& rhs);
                                                               
                                                              @@ -474,7 +508,9 @@ Effects: returns lhs.compare(rhs) < 0.

                                                              -
                                                              template <class BidirectionalIterator>
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator>
                                                               bool operator <= (const sub_match<BidirectionalIterator>& lhs,
                                                                                 const sub_match<BidirectionalIterator>& rhs);
                                                               
                                                              @@ -482,7 +518,9 @@ Effects: returns lhs.compare(rhs) <= 0.

                                                              -
                                                              template <class BidirectionalIterator>
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator>
                                                               bool operator >= (const sub_match<BidirectionalIterator>& lhs,
                                                                                 const sub_match<BidirectionalIterator>& rhs);
                                                               
                                                              @@ -490,7 +528,9 @@ Effects: returns lhs.compare(rhs) >= 0.

                                                              -
                                                              template <class BidirectionalIterator>
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator>
                                                               bool operator > (const sub_match<BidirectionalIterator>& lhs,
                                                                              const sub_match<BidirectionalIterator>& rhs);
                                                               
                                                              @@ -498,7 +538,9 @@ Effects: returns lhs.compare(rhs) > 0.

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator == (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                                         traits,
                                                                                                                         Allocator>& lhs, 
                                                              @@ -508,7 +550,9 @@
                                                                       Effects: returns lhs
                                                                       == rhs.str().
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator != (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                                         traits, 
                                                                                                                         Allocator>& lhs,
                                                              @@ -518,7 +562,9 @@
                                                                       Effects: returns lhs
                                                                       != rhs.str().
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator < (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                        traits, 
                                                                                                        Allocator>& lhs,
                                                              @@ -528,7 +574,9 @@
                                                                       Effects: returns lhs
                                                                       < rhs.str().
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator > (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                                        traits, 
                                                                                                                        Allocator>& lhs,
                                                              @@ -538,7 +586,9 @@
                                                                       Effects: returns lhs
                                                                       > rhs.str().
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator >= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                         traits, 
                                                                                                         Allocator>& lhs,
                                                              @@ -548,7 +598,9 @@
                                                                       Effects: returns lhs
                                                                       >= rhs.str().
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator <= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                         traits, 
                                                                                                         Allocator>& lhs,
                                                              @@ -558,7 +610,9 @@
                                                                       Effects: returns lhs
                                                                       <= rhs.str().
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator == (const sub_match<BidirectionalIterator>& lhs,
                                                                                 const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                         traits, 
                                                              @@ -568,7 +622,9 @@
                                                                       Effects: returns lhs.str()
                                                                       == rhs.
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator != (const sub_match<BidirectionalIterator>& lhs,
                                                                                 const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                         traits, 
                                                              @@ -578,7 +634,9 @@
                                                                       Effects: returns lhs.str()
                                                                       != rhs.
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator < (const sub_match<BidirectionalIterator>& lhs,
                                                                              const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                      traits, 
                                                              @@ -588,7 +646,9 @@
                                                                       Effects: returns lhs.str()
                                                                       < rhs.
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator > (const sub_match<BidirectionalIterator>& lhs,
                                                                                const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                        traits, 
                                                              @@ -598,7 +658,9 @@
                                                                       Effects: returns lhs.str()
                                                                       > rhs.
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator >= (const sub_match<BidirectionalIterator>& lhs,
                                                                                 const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                         traits, 
                                                              @@ -608,7 +670,9 @@
                                                                       Effects: returns lhs.str()
                                                                       >= rhs.
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               bool operator <= (const sub_match<BidirectionalIterator>& lhs,
                                                                                 const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                         traits, 
                                                              @@ -618,7 +682,9 @@
                                                                       Effects: returns lhs.str()
                                                                       <= rhs.
                                                                     

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                                                                 const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -626,7 +692,9 @@ Effects: returns lhs == rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                                                                 const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -634,7 +702,9 @@ Effects: returns lhs != rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                                                              const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -642,7 +712,9 @@ Effects: returns lhs < rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                                                              const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -650,7 +722,9 @@ Effects: returns lhs > rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                                                                 const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -658,7 +732,9 @@ Effects: returns lhs >= rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                                                                                 const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -666,7 +742,9 @@ Effects: returns lhs <= rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator == (const sub_match<BidirectionalIterator>& lhs, 
                                                                                 typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
                                                               
                                                              @@ -674,7 +752,9 @@ Effects: returns lhs.str() == rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator != (const sub_match<BidirectionalIterator>& lhs, 
                                                                                 typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
                                                               
                                                              @@ -682,7 +762,9 @@ Effects: returns lhs.str() != rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator < (const sub_match<BidirectionalIterator>& lhs, 
                                                                              typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
                                                               
                                                              @@ -690,7 +772,9 @@ Effects: returns lhs.str() < rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator > (const sub_match<BidirectionalIterator>& lhs, 
                                                                              typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
                                                               
                                                              @@ -698,7 +782,9 @@ Effects: returns lhs.str() > rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator >= (const sub_match<BidirectionalIterator>& lhs, 
                                                                                 typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
                                                               
                                                              @@ -706,7 +792,9 @@ Effects: returns lhs.str() >= rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator <= (const sub_match<BidirectionalIterator>& lhs, 
                                                                                 typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
                                                               
                                                              @@ -714,7 +802,9 @@ Effects: returns lhs.str() <= rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                                                                 const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -722,7 +812,9 @@ Effects: returns lhs == rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                                                                 const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -730,7 +822,9 @@ Effects: returns lhs != rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                                                              const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -738,7 +832,9 @@ Effects: returns lhs < rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                                                              const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -746,7 +842,9 @@ Effects: returns lhs > rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                                                                 const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -754,7 +852,9 @@ Effects: returns lhs >= rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                                                                                 const sub_match<BidirectionalIterator>& rhs); 
                                                               
                                                              @@ -762,7 +862,9 @@ Effects: returns lhs <= rhs.str().

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator == (const sub_match<BidirectionalIterator>& lhs, 
                                                                                 typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
                                                               
                                                              @@ -770,7 +872,9 @@ Effects: returns lhs.str() == rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator != (const sub_match<BidirectionalIterator>& lhs, 
                                                                                 typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
                                                               
                                                              @@ -778,7 +882,9 @@ Effects: returns lhs.str() != rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator < (const sub_match<BidirectionalIterator>& lhs, 
                                                                              typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
                                                               
                                                              @@ -786,7 +892,9 @@ Effects: returns lhs.str() < rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator > (const sub_match<BidirectionalIterator>& lhs, 
                                                                              typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
                                                               
                                                              @@ -794,7 +902,9 @@ Effects: returns lhs.str() > rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator >= (const sub_match<BidirectionalIterator>& lhs, 
                                                                                 typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
                                                               
                                                              @@ -802,7 +912,9 @@ Effects: returns lhs.str() >= rhs.

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               bool operator <= (const sub_match<BidirectionalIterator>& lhs, 
                                                                                 typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
                                                               
                                                              @@ -815,7 +927,9 @@ to any type to which you can add a std::string and obtain a new string as the result.

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator> 
                                                                  operator + (const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, 
                                                                                                      traits, 
                                                              @@ -826,7 +940,9 @@
                                                                       Effects: returns s
                                                                       + m.str().
                                                                     

                                                              -
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator, class traits, class Allocator> 
                                                               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>
                                                                  operator + (const sub_match<BidirectionalIterator>& m, 
                                                                              const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, 
                                                              @@ -837,7 +953,9 @@
                                                                       Effects: returns m.str()
                                                                       + s.
                                                                     

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                                                                  operator + (typename iterator_traits<BidirectionalIterator>::value_type const* s, 
                                                                              const sub_match<BidirectionalIterator>& m); 
                                                              @@ -846,7 +964,9 @@
                                                                       Effects: returns s
                                                                       + m.str().
                                                                     

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                                                                  operator + (const sub_match<BidirectionalIterator>& m, 
                                                                              typename iterator_traits<BidirectionalIterator>::value_type const * s);
                                                              @@ -855,7 +975,9 @@
                                                                       Effects: returns m.str()
                                                                       + s.
                                                                     

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                                                                  operator + (typename iterator_traits<BidirectionalIterator>::value_type const& s, 
                                                                              const sub_match<BidirectionalIterator>& m); 
                                                              @@ -864,7 +986,9 @@
                                                                       Effects: returns s
                                                                       + m.str().
                                                                     

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                                                                  operator + (const sub_match<BidirectionalIterator>& m, 
                                                                              typename iterator_traits<BidirectionalIterator>::value_type const& s); 
                                                              @@ -873,7 +997,9 @@
                                                                       Effects: returns m.str()
                                                                       + s.
                                                                     

                                                              -
                                                              template <class BidirectionalIterator> 
                                                              +

                                                              +

                                                              +
                                                              template <class BidirectionalIterator> 
                                                               std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
                                                                  operator + (const sub_match<BidirectionalIterator>& m1,
                                                                              const sub_match<BidirectionalIterator>& m2);
                                                              @@ -883,10 +1009,12 @@
                                                                       + m2.str().
                                                                     

                                                              - + Stream inserter
                                                              -
                                                              template <class charT, class traits, class BidirectionalIterator>
                                                              +

                                                              +

                                                              +
                                                              template <class charT, class traits, class BidirectionalIterator>
                                                               basic_ostream<charT, traits>&
                                                                  operator << (basic_ostream<charT, traits>& os
                                                                              const sub_match<BidirectionalIterator>& m);
                                                              diff --git a/doc/html/boost_regex/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html
                                                              index a75e4c6c..315a7273 100644
                                                              --- a/doc/html/boost_regex/ref/syntax_option_type.html
                                                              +++ b/doc/html/boost_regex/ref/syntax_option_type.html
                                                              @@ -3,7 +3,7 @@
                                                               
                                                               syntax_option_type
                                                               
                                                              -
                                                              +
                                                               
                                                               
                                                               
                                                              @@ -22,7 +22,7 @@
                                                               
                                                              PrevUpHomeNext
                                                              -
                                                              +
                                                              diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html index 738102e3..00f79b2f 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html @@ -3,7 +3,7 @@ Options for POSIX Basic Regular Expressions - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +

                                                              Options for POSIX Basic Regular Expressions diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html index 0a635776..1958a553 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html @@ -3,7 +3,7 @@ Options for POSIX Extended Regular Expressions - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +

                                                              Options for POSIX Extended Regular Expressions diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html index 7a8cfff3..16f29b8b 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html @@ -3,7 +3,7 @@ Options for Literal Strings - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +

                                                              Options for Literal Strings diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html index 09cf3377..be67a47a 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html @@ -3,7 +3,7 @@ Overview of syntax_option_type - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +

                                                              Overview of syntax_option_type diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html index a6dfd485..08b8952e 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html @@ -3,7 +3,7 @@ Options for Perl Regular Expressions - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +

                                                              Options for Perl Regular Expressions diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html index 715a8ca6..0c3d65ba 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html @@ -3,7 +3,7 @@ syntax_option_type Synopsis - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +

                                                              syntax_option_type Synopsis diff --git a/doc/html/boost_regex/syntax.html b/doc/html/boost_regex/syntax.html index c8d9f767..bcc38c76 100644 --- a/doc/html/boost_regex/syntax.html +++ b/doc/html/boost_regex/syntax.html @@ -3,7 +3,7 @@ Regular Expression Syntax - + @@ -22,7 +22,7 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +
                                                              @@ -61,16 +61,16 @@ There are three main syntax options available, depending upon how you construct the regular expression object:

                                                              -

                                                              -

                                                              - +

                                                              +

                                                              +

                                                              + POSIX Extended Syntax

                                                              @@ -54,25 +56,25 @@

                                                              .[{()\*+?|^$
                                                              - + Wildcard:

                                                              The single character '.' when used outside of a character set will match any single character except:

                                                              -
                                                                -
                                                              • +
                                                                  +
                                                                • The NULL character when the flag match_no_dot_null is passed to the matching algorithms.
                                                                • -
                                                                • +
                                                                • The newline character when the flag match_not_dot_newline is passed to the matching algorithms.
                                                                - + Anchors:

                                                                @@ -84,7 +86,7 @@ of an expression, or the last character of a sub-expression.

                                                                - + Marked sub-expressions:
                                                                @@ -96,7 +98,7 @@ to by a back-reference.

                                                                - + Repeats:

                                                                @@ -182,7 +184,7 @@ cab operator to be applied to.

                                                                - + Back references:

                                                                @@ -212,7 +214,7 @@ cab

                                                              - + Alternation

                                                              @@ -225,7 +227,7 @@ cab will match either of "abd" or "abef".

                                                              - + Character sets:
                                                              @@ -238,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

                                                              - + Single characters:
                                                              @@ -247,7 +249,7 @@ cab or 'c'.

                                                              - + Character ranges:
                                                              @@ -263,7 +265,7 @@ cab the code points of the characters only.

                                                              - + Negation:

                                                              @@ -272,7 +274,7 @@ cab range a-c.

                                                              - + Character classes:
                                                              @@ -282,7 +284,7 @@ cab character class names.

                                                              - + Collating Elements:
                                                              @@ -310,7 +312,7 @@ cab matches a NUL character.

                                                              - + Equivalence classes:
                                                              @@ -327,7 +329,7 @@ cab or even all locales on one platform.

                                                              - + Combinations:

                                                              @@ -335,21 +337,21 @@ cab [[:digit:]a-c[.NUL.]].

                                                              - + Escapes

                                                              The POSIX standard defines no escape sequences for POSIX-Extended regular expressions, except that:

                                                              -
                                                                -
                                                              • +
                                                                  +
                                                                • Any special character preceded by an escape shall match itself.
                                                                • -
                                                                • +
                                                                • The effect of any ordinary character being preceded by an escape is undefined.
                                                                • -
                                                                • +
                                                                • An escape inside a character class declaration shall match itself: in other words the escape character is not "special" inside a character class declaration; so [\^] @@ -361,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

                                                                  - + Escapes matching a specific character
                                                                  @@ -550,7 +552,7 @@ cab
                                                                - + "Single character" character classes:
                                                                @@ -704,7 +706,7 @@ cab
                                                              - + Character Properties
                                                              @@ -811,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

                                                              - + Word Boundaries

                                                              @@ -886,7 +888,7 @@ cab

                                                            - + Buffer boundaries
                                                            @@ -977,7 +979,7 @@ cab
                                                          - + Continuation Escape
                                                          @@ -989,7 +991,7 @@ cab match to start where the last one ended.

                                                          - + Quoting escape
                                                          @@ -1003,7 +1005,7 @@ cab \*+aaa
                                                          - + Unicode escapes
                                                          @@ -1054,7 +1056,7 @@ cab
                                                        - + Any other escape
                                                        @@ -1063,44 +1065,44 @@ cab \@ matches a literal '@'.

                                                        - + Operator precedence

                                                        The order of precedence for of operators is as follows:

                                                        -
                                                          -
                                                        1. +
                                                            +
                                                          1. Collation-related bracket symbols [==] [::] [..]
                                                          2. -
                                                          3. +
                                                          4. Escaped characters \
                                                          5. -
                                                          6. +
                                                          7. Character set (bracket expression) []
                                                          8. -
                                                          9. +
                                                          10. Grouping ()
                                                          11. -
                                                          12. +
                                                          13. Single-character-ERE duplication * + ? {m,n}
                                                          14. -
                                                          15. +
                                                          16. Concatenation
                                                          17. -
                                                          18. +
                                                          19. Anchoring ^$
                                                          20. -
                                                          21. +
                                                          22. Alternation |
                                                          - + What Gets Matched
                                                          @@ -1110,11 +1112,11 @@ cab rule.

                                                          - + Variations

                                                          - + Egrep

                                                          @@ -1135,7 +1137,7 @@ cab used with the -E option.

                                                          - + awk

                                                          @@ -1149,7 +1151,7 @@ cab these by default anyway.

                                                          - + Options

                                                          @@ -1162,7 +1164,7 @@ cab modify how the case and locale sensitivity are to be applied.

                                                          - + References

                                                          diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 756d9942..480c3fc3 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -3,7 +3,7 @@ POSIX Basic Regular Expression Syntax - + @@ -22,13 +22,13 @@

                                                          PrevUpHomeNext
                                                          -
                                                          +

                                                          - + Synopsis

                                                          @@ -42,8 +42,10 @@ // e2 a case insensitive POSIX-Basic expression: boost::regex e2(my_expression, boost::regex::basic|boost::regex::icase);

                                                        -

                                                        - +

                                                        +

                                                        +

                                                        + POSIX Basic Syntax

                                                        @@ -53,25 +55,25 @@

                                                        .[\*^$
                                                        - + Wildcard:

                                                        The single character '.' when used outside of a character set will match any single character except:

                                                        -
                                                          -
                                                        • +
                                                            +
                                                          • The NULL character when the flag match_no_dot_null is passed to the matching algorithms.
                                                          • -
                                                          • +
                                                          • The newline character when the flag match_not_dot_newline is passed to the matching algorithms.
                                                          - + Anchors:

                                                          @@ -83,7 +85,7 @@ of an expression, or the last character of a sub-expression.

                                                          - + Marked sub-expressions:
                                                          @@ -95,7 +97,7 @@ by a back-reference.

                                                          - + Repeats:

                                                          @@ -153,7 +155,7 @@ aaaa to.

                                                          - + Back references:

                                                          @@ -171,7 +173,7 @@ aaaa

                                                          aaabba
                                                          - + Character sets:
                                                          @@ -184,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

                                                          - + Single characters:
                                                          @@ -193,7 +195,7 @@ aaaa or 'c'.

                                                          - + Character ranges:
                                                          @@ -209,7 +211,7 @@ aaaa of the characters only.

                                                          - + Negation:

                                                          @@ -218,7 +220,7 @@ aaaa range a-c.

                                                          - + Character classes:
                                                          @@ -228,7 +230,7 @@ aaaa character class names.

                                                          - + Collating Elements:
                                                          @@ -257,7 +259,7 @@ aaaa element names.

                                                          - + Equivalence classes:
                                                          @@ -274,7 +276,7 @@ aaaa or even all locales on one platform.

                                                          - + Combinations:

                                                          @@ -282,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

                                                          - + Escapes

                                                          @@ -297,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

                                                          - + What Gets Matched

                                                          @@ -307,11 +309,13 @@ aaaa rule.

                                                          - + Variations

                                                          -
                                                          - +

                                                          +

                                                          +
                                                          + Grep

                                                          @@ -329,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

                                                          - + emacs

                                                          @@ -609,7 +613,7 @@ aaaa leftmost-longest rule.

                                                          - + Options

                                                          @@ -623,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

                                                          - + References

                                                          diff --git a/doc/html/boost_regex/syntax/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index b6878983..99f58a23 100644 --- a/doc/html/boost_regex/syntax/character_classes.html +++ b/doc/html/boost_regex/syntax/character_classes.html @@ -3,7 +3,7 @@ Character Class Names - + @@ -22,7 +22,7 @@

                                                          PrevUpHomeNext
                                                          -
                                                          +

                                                          Character Class Names diff --git a/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html b/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html index 5aa2d348..39290f4e 100644 --- a/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html +++ b/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html @@ -3,7 +3,7 @@ Character classes that are supported by Unicode Regular Expressions - + @@ -22,7 +22,7 @@
                                                          PrevUpHomeNext
                                                          -
                                                          +

                                                          Character classes that are supported by Unicode Regular Expressions @@ -53,6 +53,8 @@ +

                                                          +

                                                          @@ -62,6 +64,8 @@ +

                                                          +

                                                          @@ -71,6 +75,8 @@ +

                                                          +

                                                          diff --git a/doc/html/boost_regex/syntax/character_classes/std_char_clases.html b/doc/html/boost_regex/syntax/character_classes/std_char_clases.html index e5bc8d9c..a2d81a0c 100644 --- a/doc/html/boost_regex/syntax/character_classes/std_char_clases.html +++ b/doc/html/boost_regex/syntax/character_classes/std_char_clases.html @@ -3,7 +3,7 @@ Character Classes that are Always Supported - + @@ -22,7 +22,7 @@

                                                          PrevUpHomeNext
                                                          -
                                                          +

                                                          Character Classes that are Always Supported diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index 846399b3..b2c6b7ba 100644 --- a/doc/html/boost_regex/syntax/collating_names.html +++ b/doc/html/boost_regex/syntax/collating_names.html @@ -3,7 +3,7 @@ Collating Names - + @@ -22,7 +22,7 @@
                                                          PrevUpHomeNext
                                                          -
                                                          +
                                                          diff --git a/doc/html/boost_regex/syntax/collating_names/digraphs.html b/doc/html/boost_regex/syntax/collating_names/digraphs.html index fce83f1e..a77c26ed 100644 --- a/doc/html/boost_regex/syntax/collating_names/digraphs.html +++ b/doc/html/boost_regex/syntax/collating_names/digraphs.html @@ -3,7 +3,7 @@ Digraphs - + @@ -22,7 +22,7 @@
                                                          PrevUpHomeNext
                                                          -
                                                          +
                                                          diff --git a/doc/html/boost_regex/syntax/collating_names/named_unicode.html b/doc/html/boost_regex/syntax/collating_names/named_unicode.html index 29a0318a..304a3b5d 100644 --- a/doc/html/boost_regex/syntax/collating_names/named_unicode.html +++ b/doc/html/boost_regex/syntax/collating_names/named_unicode.html @@ -3,7 +3,7 @@ Named Unicode Characters - + @@ -22,7 +22,7 @@
                                                          PrevUpHomeNext
                                                          -
                                                          +

                                                          Named Unicode Characters diff --git a/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html b/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html index af27d244..e657a212 100644 --- a/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html +++ b/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html @@ -3,7 +3,7 @@ POSIX Symbolic Names - + @@ -22,7 +22,7 @@
                                                          PrevUpHomeNext
                                                          -
                                                          +

                                                          POSIX Symbolic Names diff --git a/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/doc/html/boost_regex/syntax/leftmost_longest_rule.html index 1e87adc2..70162164 100644 --- a/doc/html/boost_regex/syntax/leftmost_longest_rule.html +++ b/doc/html/boost_regex/syntax/leftmost_longest_rule.html @@ -3,7 +3,7 @@ The Leftmost Longest Rule - + @@ -22,7 +22,7 @@
                                                          PrevUpHomeNext
                                                          -
                                                          +

                                                          The Leftmost Longest Rule @@ -32,32 +32,32 @@ location, for POSIX basic and extended regular expressions, the "best" match is determined as follows:

                                                          -
                                                            -
                                                          1. +
                                                              +
                                                            1. Find the leftmost match, if there is only one match possible at this location then return it.
                                                            2. -
                                                            3. +
                                                            4. Find the longest of the possible matches, along with any ties. If there is only one such possible match then return it.
                                                            5. -
                                                            6. +
                                                            7. If there are no marked sub-expressions, then all the remaining alternatives are indistinguishable; return the first of these found.
                                                            8. -
                                                            9. +
                                                            10. Find the match which has matched the first sub-expression in the leftmost position, along with any ties. If there is only on such match possible then return it.
                                                            11. -
                                                            12. +
                                                            13. Find the match which has the longest match for the first sub-expression, along with any ties. If there is only one such match then return it.
                                                            14. -
                                                            15. +
                                                            16. Repeat steps 4 and 5 for each additional marked sub-expression.
                                                            17. -
                                                            18. +
                                                            19. If there is still more than one possible match remaining, then they are indistinguishable; return the first one found.
                                                            20. diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 44f30850..da2a260b 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -3,7 +3,7 @@ Perl Regular Expression Syntax - + @@ -22,13 +22,13 @@
                                                              PrevUpHomeNext
                                                              -
                                                              +

                                                              - + Synopsis

                                                              @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

                                                        - + Perl Regular Expression Syntax

                                                        @@ -53,27 +53,27 @@

                                                        .[{()\*+?|^$
                                                        - + Wildcard

                                                        The single character '.' when used outside of a character set will match any single character except:

                                                        -
                                                        - + "Single character" character classes:
                                                        @@ -894,7 +894,7 @@
                                                        - + Character Properties
                                                        @@ -1002,7 +1002,7 @@ as does \p{digit}.

                                                        - + Word Boundaries

                                                        @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

                                                        - + Buffer boundaries

                                                        @@ -1048,7 +1048,7 @@ (?=\n?\z).

                                                        - + Continuation Escape
                                                        @@ -1060,7 +1060,7 @@ one ended.

                                                        - + Quoting escape

                                                        @@ -1073,7 +1073,7 @@ \*+aaa

                                                        - + Unicode escapes

                                                        @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

                                                        - + Matching Line Endings
                                                        @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

                                                        - + Keeping back some text
                                                        @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

                                                        - + Any other escape
                                                        @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

                                                        - + Perl Extended Patterns
                                                        @@ -1125,7 +1125,7 @@ (?.

                                                        - + Named Subexpressions
                                                        @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

                                                        - + Comments

                                                        (?# ... ) is treated as a comment, it's contents are ignored.

                                                        - + Modifiers

                                                        @@ -1168,7 +1168,7 @@ pattern only.

                                                        - + Non-marking groups
                                                        @@ -1177,7 +1177,7 @@ an additional sub-expression.

                                                        - + Branch reset

                                                        @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

                                                        - + Lookahead

                                                        @@ -1222,7 +1222,7 @@ could be used to validate the password.

                                                        - + Lookbehind

                                                        @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

                                                        - + Independent sub-expressions
                                                        @@ -1249,7 +1249,7 @@ no match is found at all.

                                                        - + Recursive Expressions
                                                        @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

                                                        - + Conditional Expressions
                                                        @@ -1295,27 +1295,27 @@

                                                        Here is a summary of the possible predicates:

                                                        -
                                                          -
                                                        • +
                                                            +
                                                          • (?(?=assert)yes-pattern|no-pattern) Executes yes-pattern if the forward look-ahead assert matches, otherwise executes no-pattern.
                                                          • -
                                                          • +
                                                          • (?(?!assert)yes-pattern|no-pattern) Executes yes-pattern if the forward look-ahead assert does not match, otherwise executes no-pattern.
                                                          • -
                                                          • +
                                                          • (?(R)yes-pattern|no-pattern) Executes yes-pattern if we are executing inside a recursion, otherwise executes no-pattern.
                                                          • -
                                                          • +
                                                          • (?(RN)yes-pattern|no-pattern) Executes yes-pattern if we are executing inside a recursion to sub-expression N, otherwise executes no-pattern.
                                                          • -
                                                          • +
                                                          • (?(DEFINE)never-exectuted-pattern) Defines a block of code that is never executed and matches no characters: this is usually used to define one or more named sub-expressions which are refered to @@ -1323,42 +1323,42 @@
                                                          - + Operator precedence

                                                          The order of precedence for of operators is as follows:

                                                          -
                                                            -
                                                          1. +
                                                              +
                                                            1. Collation-related bracket symbols [==] [::] [..]
                                                            2. -
                                                            3. +
                                                            4. Escaped characters \
                                                            5. -
                                                            6. +
                                                            7. Character set (bracket expression) []
                                                            8. -
                                                            9. +
                                                            10. Grouping ()
                                                            11. -
                                                            12. +
                                                            13. Single-character-ERE duplication * + ? {m,n}
                                                            14. -
                                                            15. +
                                                            16. Concatenation
                                                            17. -
                                                            18. +
                                                            19. Anchoring ^$
                                                            20. -
                                                            21. +
                                                            22. Alternation |

                                                            - + What gets matched

                                                            @@ -1534,7 +1534,7 @@

                                                          - + Variations

                                                          @@ -1543,7 +1543,7 @@ and JScript are all synonyms for perl.

                                                          - + Options

                                                          @@ -1555,7 +1555,7 @@ are to be applied.

                                                          - + Pattern Modifiers

                                                          @@ -1567,7 +1567,7 @@ and no_mod_s.

                                                          - + References

                                                          diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index bab4f6ef..5998d9c5 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -3,7 +3,7 @@ Unicode and Boost.Regex - + @@ -22,7 +22,7 @@

                                                          PrevUpHomeNext
                                                          -
                                                          +
                                                          @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

                                                          - + Rely on wchar_t

                                                          @@ -40,23 +40,23 @@ std::iswlower etc), then you can use boost::wregex to process Unicode. However, there are several disadvantages to this approach:

                                                          -
                                                            -
                                                          • +
                                                              +
                                                            • It's not portable: there's no guarantee on the width of wchar_t, or even whether the runtime treats wide characters as Unicode at all, most Windows compilers do so, but many Unix systems do not.
                                                            • -
                                                            • +
                                                            • There's no support for Unicode-specific character classes: [[:Nd:]], [[:Po:]] etc.
                                                            • -
                                                            • +
                                                            • You can only search strings that are encoded as sequences of wide characters, it is not possible to search UTF-8, or even UTF-16 on many platforms.
                                                            - + Use a Unicode Aware Regular Expression Type.
                                                            diff --git a/doc/html/index.html b/doc/html/index.html index d914a70d..bb1c363a 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -3,7 +3,7 @@ Boost.Regex - + @@ -18,7 +18,7 @@
                                                            Next
                                                            -
                                                            +

                                                            @@ -28,7 +28,7 @@

                                                            -

                                                            +

                                                            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)

                                                            @@ -196,7 +196,7 @@

                                                            - +

                                                            Last revised: July 08, 2010 at 22:35:49 GMT

                                                            Last revised: July 15, 2010 at 17:14:37 GMT


                                                            From e9ba172c2226d518e64d9db296a1308a596699cd Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 20 Jul 2010 14:52:17 +0000 Subject: [PATCH 47/77] Update performance test program to include std::regex. [SVN r64199] --- performance/command_line.cpp | 42 ++++++++++- performance/input.html | 3 +- performance/main.cpp | 16 ++++ performance/regex_comparison.hpp | 10 +++ performance/time_std.cpp | 123 +++++++++++++++++++++++++++++++ 5 files changed, 191 insertions(+), 3 deletions(-) create mode 100644 performance/time_std.cpp diff --git a/performance/command_line.cpp b/performance/command_line.cpp index 7c7a5a68..bdebc7a1 100644 --- a/performance/command_line.cpp +++ b/performance/command_line.cpp @@ -34,6 +34,7 @@ bool time_safe_greta = false; bool time_posix = false; bool time_pcre = false; bool time_xpressive = false; +bool time_std = false; bool test_matches = false; bool test_code = false; @@ -55,6 +56,7 @@ double locale_boost_total = 0; double posix_total = 0; double pcre_total = 0; double xpressive_total = 0; +double std_total = 0; unsigned greta_test_count = 0; unsigned safe_greta_test_count = 0; unsigned boost_test_count = 0; @@ -62,6 +64,7 @@ unsigned locale_boost_test_count = 0; unsigned posix_test_count = 0; unsigned pcre_test_count = 0; unsigned xpressive_test_count = 0; +unsigned std_test_count = 0; int handle_argument(const std::string& what) { @@ -86,6 +89,10 @@ int handle_argument(const std::string& what) #ifdef BOOST_HAS_XPRESSIVE else if(what == "-xpressive" || what == "-dxpr") time_xpressive = true; +#endif +#ifndef BOOST_NO_0X_HDR_REGEX + else if(what == "-std") + time_std = true; #endif else if(what == "-all") { @@ -103,6 +110,9 @@ int handle_argument(const std::string& what) #endif #ifdef BOOST_HAS_XPRESSIVE time_xpressive = true; +#endif +#ifndef BOOST_NO_0X_HDR_REGEX + time_std = true; #endif } else if(what == "-test-matches") @@ -166,6 +176,9 @@ int show_usage() #endif #ifdef BOOST_HAS_XPRESSIVE " -dxpr Apply tests to dynamic xpressive library\n" +#endif +#ifndef BOOST_NO_0X_HDR_REGEX + " -std Apply tests to std::regex.\n" #endif " -all Apply tests to all libraries\n\n" " test options:\n" @@ -273,6 +286,10 @@ void output_html_results(bool show_description, const std::string& tagname) #ifdef BOOST_HAS_XPRESSIVE if(time_xpressive == true) os << "Dynamic Xpressive"; +#endif +#ifndef BOOST_NO_0X_HDR_REGEX + if(time_std == true) + os << "std::regex"; #endif os << "\n"; @@ -307,7 +324,6 @@ void output_html_results(bool show_description, const std::string& tagname) } } #endif -#if defined(BOOST_HAS_POSIX) if(time_boost == true) { print_result(os, first->boost_time, first->factor); @@ -317,7 +333,6 @@ void output_html_results(bool show_description, const std::string& tagname) ++boost_test_count; } } -#endif if(time_localised_boost == true) { print_result(os, first->localised_boost_time, first->factor); @@ -357,6 +372,17 @@ void output_html_results(bool show_description, const std::string& tagname) ++xpressive_test_count; } } +#endif +#ifndef BOOST_NO_0X_HDR_REGEX + if(time_std == true) + { + print_result(os, first->std_time, first->factor); + if(first->std_time > 0) + { + std_total += first->std_time / first->factor; + ++std_test_count; + } + } #endif os << "\n"; ++first; @@ -429,6 +455,12 @@ std::string get_averages_table() { os << "Dynamic Xpressive"; } +#endif +#ifndef BOOST_NO_0X_HDR_REGEX + if(time_std == true) + { + os << "std::regex"; + } #endif os << "\n"; @@ -446,6 +478,8 @@ std::string get_averages_table() if(time_boost == true) os << "" << (boost_total / boost_test_count) << "\n"; #endif + if(time_boost == true) + os << "" << (boost_total / boost_test_count) << "\n"; if(time_localised_boost == true) os << "" << (locale_boost_total / locale_boost_test_count) << "\n"; if(time_posix == true) @@ -457,6 +491,10 @@ std::string get_averages_table() #if defined(BOOST_HAS_XPRESSIVE) if(time_xpressive == true) os << "" << (xpressive_total / xpressive_test_count) << "\n"; +#endif +#ifndef BOOST_NO_0X_HDR_REGEX + if(time_std == true) + os << "" << (std_total / std_test_count) << "\n"; #endif os << "\n"; os << "\n"; diff --git a/performance/input.html b/performance/input.html index 9b2312b8..425dedeb 100644 --- a/performance/input.html +++ b/performance/input.html @@ -46,7 +46,7 @@

                                                            Comparison 2: Medium Sized Search

                                                            For each of the following regular expressions the time taken to find all occurrences of the expression within a medium sized English language text was - measured (the first 50K from mtent12.txt). 

                                                            + measured (the first 50K from mtent12.txt - up to the end of Chapter 1). 

                                                            %short_twain_search%

                                                            Comparison 3: C++ Code Search

                                                            For each of the following regular expressions the time taken to find all @@ -73,3 +73,4 @@ + diff --git a/performance/main.cpp b/performance/main.cpp index 203f6bd5..3301fb59 100644 --- a/performance/main.cpp +++ b/performance/main.cpp @@ -73,6 +73,14 @@ void test_match(const std::string& re, const std::string& text, const std::strin r.xpressive_time = time; std::cout << "\txpressive regex: " << time << "s\n"; } +#endif +#ifndef BOOST_NO_0X_HDR_REGEX + if(time_std == true) + { + time = stdr::time_match(re, text, icase); + r.std_time = time; + std::cout << "\tstd::regex: " << time << "s\n"; + } #endif r.finalise(); result_list.push_back(r); @@ -134,6 +142,14 @@ void test_find_all(const std::string& re, const std::string& text, const std::st r.xpressive_time = time; std::cout << "\txpressive regex: " << time << "s\n"; } +#endif +#ifndef BOOST_NO_0X_HDR_REGEX + if(time_std == true) + { + time = stdr::time_find_all(re, text, icase); + r.std_time = time; + std::cout << "\tstd::regex: " << time << "s\n"; + } #endif r.finalise(); result_list.push_back(r); diff --git a/performance/regex_comparison.hpp b/performance/regex_comparison.hpp index 1c4cc6c2..4ed968fd 100644 --- a/performance/regex_comparison.hpp +++ b/performance/regex_comparison.hpp @@ -27,6 +27,7 @@ extern bool time_safe_greta; extern bool time_posix; extern bool time_pcre; extern bool time_xpressive; +extern bool time_std; extern bool test_matches; extern bool test_short_twain; @@ -55,6 +56,7 @@ struct results double posix_time; double pcre_time; double xpressive_time; + double std_time; double factor; std::string expression; std::string description; @@ -66,6 +68,7 @@ struct results posix_time(-1), pcre_time(-1), xpressive_time(-1), + std_time(-1), factor((std::numeric_limits::max)()), expression(ex), description(desc) @@ -86,6 +89,8 @@ struct results factor = pcre_time; if((xpressive_time >= 0) && (xpressive_time < factor)) factor = xpressive_time; + if((std_time >= 0) && (std_time < factor)) + factor = std_time; } }; @@ -133,6 +138,11 @@ namespace dxpr { double time_match(const std::string& re, const std::string& text, bool icase); double time_find_all(const std::string& re, const std::string& text, bool icase); } +namespace stdr { +// xpressive tests: +double time_match(const std::string& re, const std::string& text, bool icase); +double time_find_all(const std::string& re, const std::string& text, bool icase); +} void test_match(const std::string& re, const std::string& text, const std::string& description, bool icase = false); void test_find_all(const std::string& re, const std::string& text, const std::string& description, bool icase = false); diff --git a/performance/time_std.cpp b/performance/time_std.cpp new file mode 100644 index 00000000..46fa212b --- /dev/null +++ b/performance/time_std.cpp @@ -0,0 +1,123 @@ +/* + * + * Copyright (c) 2002 + * John Maddock + * + * Use, modification and distribution are 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) + * + */ + +#include "regex_comparison.hpp" +#ifndef BOOST_NO_0X_HDR_REGEX +#include +#include +#include + +namespace stdr{ + +double time_match(const std::string& re, const std::string& text, bool icase) +{ + try{ + std::regex e(re, (icase ? std::regex::ECMAScript | std::regex::icase : std::regex::ECMAScript)); + std::smatch what; + boost::timer tim; + int iter = 1; + int counter, repeats; + double result = 0; + double run; + do + { + tim.restart(); + for(counter = 0; counter < iter; ++counter) + { + std::regex_match(text, what, e); + } + result = tim.elapsed(); + iter *= 2; + }while(result < 0.5); + iter /= 2; + + // repeat test and report least value for consistency: + for(repeats = 0; repeats < REPEAT_COUNT; ++repeats) + { + tim.restart(); + for(counter = 0; counter < iter; ++counter) + { + std::regex_match(text, what, e); + } + run = tim.elapsed(); + result = (std::min)(run, result); + } + return result / iter; + } + catch(const std::exception& e) + { + std::cout << "Exception: " << e.what() << std::endl; + return -1; + } +} + +bool dummy_grep_proc(const std::smatch&) +{ return true; } + +struct noop +{ + void operator()( std::smatch const & ) const + { + } +}; + +double time_find_all(const std::string& re, const std::string& text, bool icase) +{ + try{ + std::regex e(re, (icase ? std::regex::ECMAScript | std::regex::icase : std::regex::ECMAScript)); + std::smatch what; + boost::timer tim; + int iter = 1; + int counter, repeats; + double result = 0; + double run; + do + { + tim.restart(); + for(counter = 0; counter < iter; ++counter) + { + std::sregex_iterator begin( text.begin(), text.end(), e ), end; + std::for_each( begin, end, noop() ); + //std::regex_grep(&dummy_grep_proc, text, e); + } + result = tim.elapsed(); + iter *= 2; + }while(result < 0.5); + iter /= 2; + + if(result >10) + return result / iter; + + // repeat test and report least value for consistency: + for(repeats = 0; repeats < REPEAT_COUNT; ++repeats) + { + tim.restart(); + for(counter = 0; counter < iter; ++counter) + { + std::sregex_iterator begin( text.begin(), text.end(), e ), end; + std::for_each( begin, end, noop() ); + //std::regex_grep(&dummy_grep_proc, text, e); + } + run = tim.elapsed(); + result = (std::min)(run, result); + } + return result / iter; + } + catch(const std::exception& e) + { + std::cout << "Exception: " << e.what() << std::endl; + return -1; + } +} + +} + +#endif From fe1fc3ade08b07ee559751d3245c92c5faa609ac Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 21 Jul 2010 10:22:29 +0000 Subject: [PATCH 48/77] Fix typo, and regenerate docs. [SVN r64215] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 18 ++-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 +-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 ++-- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 ++++++------ doc/html/boost_regex/syntax/basic_syntax.html | 44 ++++---- doc/html/boost_regex/syntax/perl_syntax.html | 100 +++++++++--------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/syntax_perl.qbk | 2 +- 32 files changed, 196 insertions(+), 196 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 92ed1029..2e7cde55 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs

                                                    - + Test Programs
                                                    @@ -151,7 +151,7 @@ Files: captures_test.cpp.

                                                    - + Example programs
                                                    @@ -177,7 +177,7 @@ Files: regex_timer.cpp.

                                                    - + Code snippets
                                                    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 30d2c8ee..ef6f560f 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

                                                    - + Boost 1.44
                                                    @@ -55,7 +55,7 @@ #3890

                                                    - + Boost 1.42
                                                    @@ -84,7 +84,7 @@
                                                  - + Boost 1.40
                                                  @@ -93,7 +93,7 @@ branch resets and recursive regular expressions.
                                                - + Boost 1.38
                                                @@ -121,7 +121,7 @@
                                              - + Boost 1.34
                                              @@ -144,7 +144,7 @@

                                            - + Boost 1.33.1
                                            @@ -214,7 +214,7 @@
                                          - + Boost 1.33.0
                                          @@ -269,7 +269,7 @@

                                        - + Boost 1.32.1
                                        @@ -277,7 +277,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
                                      - + Boost 1.31.0
                                      diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 20c4ad68..a16dc05d 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

                                      - + Win32 localization model.
                                      @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

                                      - + C localization model.
                                      @@ -114,7 +114,7 @@ libraries including version 1 of this library.

                                      - + C++ localization model.
                                      @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

                                      - + Providing a message catalogue
                                      diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 8f1a058b..eebfb4fb 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance

                    - + C++

                    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

                    - + ECMAScript / JavaScript
                    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

                    - + Perl

                    @@ -73,7 +73,7 @@ the Unicode requirements below.

                    - + POSIX

                    @@ -93,7 +93,7 @@ a custom traits class.

                    - + Unicode

                    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 290a0307..976e9a53 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

                    - + Marked sub-expressions

                    @@ -218,7 +218,7 @@ output stream.

                    - + Unmatched Sub-Expressions

                    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

                    - + Repeated Captures

                    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index cf866fb7..64065262 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

                    - + Grouping

                    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

                    - + Conditionals

                    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

                    - + Placeholder Sequences
                    @@ -319,7 +319,7 @@ as a literal.

                    - + Escape Sequences
                    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 1a8ff313..d401744e 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

                    - + Building with bjam

                    @@ -58,7 +58,7 @@ started guide for more information.

                    - + Building With Unicode and ICU Support
                    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

                    - + Building via makefiles
                    - + Borland C++ Builder:
                    - + GCC(2.95 and later)

                    @@ -302,7 +302,7 @@ see the config library documentation.

                    - + Sun Workshop 6.1

                    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

                    - + Makefiles for Other compilers
                    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 4d42579a..7b328aa4 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression

                  - + Synopsis
                  #include <boost/pattern_except.hpp>
                  @@ -54,7 +54,7 @@
                   } // namespace boost
                   
                  - + Description
                  regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
                  diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
                  index 515a636d..184bd557 100644
                  --- a/doc/html/boost_regex/ref/basic_regex.html
                  +++ b/doc/html/boost_regex/ref/basic_regex.html
                  @@ -27,7 +27,7 @@
                    basic_regex
                   

              - + Synopsis
              #include <boost/regex.hpp>
              @@ -244,7 +244,7 @@
               } // namespace boost
               
              - + Description

              @@ -327,7 +327,7 @@ basic_regex.

              -

              Table 1. basic_regex default construction postconditions

              +

              Table 1. basic_regex default construction postconditions

              @@ -407,7 +407,7 @@ flags specified in f.

              -

              Table 2. Postconditions for basic_regex construction

              +

              Table 2. Postconditions for basic_regex construction

              @@ -512,7 +512,7 @@ specified in f.

              -

              Table 3. Postconditions for basic_regex construction

              +

              Table 3. Postconditions for basic_regex construction

              @@ -616,7 +616,7 @@ according the option flags specified in f.

              -

              Table 4. Postconditions for basic_regex construction

              +

              Table 4. Postconditions for basic_regex construction

              @@ -728,7 +728,7 @@ flags specified in f.

              -

              Table 5. Postconditions for basic_regex construction

              +

              Table 5. Postconditions for basic_regex construction

              @@ -830,7 +830,7 @@ flags specified in f.

              -

              Table 6. Postconditions for basic_regex construction

              +

              Table 6. Postconditions for basic_regex construction

              @@ -1044,7 +1044,7 @@ in f.

              -

              Table 7. Postconditions for basic_regex::assign

              +

              Table 7. Postconditions for basic_regex::assign

              diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index f56b26ef..be1e107a 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

              - + Minimal requirements.
              @@ -382,7 +382,7 @@
              - + Additional Optional Requirements
              diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index fb471c26..06c7dab9 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

              - + Algorithm regex_format
              diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index d3247b4b..3580227f 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type

              - + Synopsis

              @@ -57,7 +57,7 @@ } // namespace boost

              - + Description

              diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index d0c21bec..bfd64b94 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

              - + Description

              diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index c3b85d95..352b7a08 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

              - + Synopsis
              #include <boost/regex.hpp>
              @@ -167,7 +167,7 @@
                        match_results<BidirectionalIterator, Allocator>& m2);
               
              - + Description

              diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 90b1cd2f..f9200004 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

              - + u32regex_match

              @@ -89,7 +89,7 @@ }

              - + u32regex_search

              @@ -128,7 +128,7 @@ }

              - + u32regex_replace

              diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index e763c96f..2ae467a1 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

              - + u32regex_iterator

              @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

              - + u32regex_token_iterator

              diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 852238c2..252ef1b2 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

              - + regex_match

              @@ -82,7 +82,7 @@ }

              - + regex_match (second overload)
              @@ -110,7 +110,7 @@ }
              - + regex_search

              @@ -149,7 +149,7 @@ }

              - + regex_search (second overload)
              @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

              - + regex_replace

              diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 76fadde2..409d94f0 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

              - + regex_iterator creation helper
              @@ -68,7 +68,7 @@ }
              - + regex_token_iterator creation helpers
              diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 7de63653..f19ce29c 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

              - + regcomp

              @@ -379,7 +379,7 @@

              - + regerror

              @@ -467,7 +467,7 @@

              - + regexec

              @@ -537,7 +537,7 @@

              - + regfree

              diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index ec44acb1..b24a9391 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

              - + Description

              @@ -437,7 +437,7 @@ m.

              - + Examples

              diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 2a47763d..d887361c 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

              - + Description
              template <class BidirectionalIterator, class Allocator, class charT, class traits>
              @@ -361,7 +361,7 @@
                       Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
                     

              - + Examples

              diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 8caec3fc..b520b401 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

              - + Description
              template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
              @@ -199,7 +199,7 @@
                       and then returns result.
                     

              - + Examples

              diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 01d22338..476548df 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

              - + Description
              template <class BidirectionalIterator, class Allocator, class charT, class traits>
              @@ -357,7 +357,7 @@
                       Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
                     

              - + Examples

              diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 2e1c83ef..531470f9 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

              - + Description

              @@ -383,7 +383,7 @@ m.

              - + Examples

              diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 874fd107..43943935 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

              - + Description

              diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 6d90313d..f5b56b9c 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

              - + Description
              - + Members

              @@ -474,7 +474,7 @@

            - + sub_match non-member operators
            @@ -1009,7 +1009,7 @@ + m2.str().

            - + Stream inserter

            diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 4d7b0893..20e4c05a 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

        - + Synopsis

        @@ -46,7 +46,7 @@

        - + POSIX Extended Syntax

        @@ -56,7 +56,7 @@

        .[{()\*+?|^$
        - + Wildcard:

        @@ -74,7 +74,7 @@

      - + Anchors:

      @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

      - + Marked sub-expressions:
      @@ -98,7 +98,7 @@ to by a back-reference.

      - + Repeats:

      @@ -184,7 +184,7 @@ cab operator to be applied to.

      - + Back references:

      @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1102,7 +1102,7 @@ cab
    - + What Gets Matched
    @@ -1112,11 +1112,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1137,7 +1137,7 @@ cab used with the -E option.

    - + awk

    @@ -1151,7 +1151,7 @@ cab these by default anyway.

    - + Options

    @@ -1164,7 +1164,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 480c3fc3..54a8198d 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index da2a260b..6d47d4a0 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -217,9 +217,9 @@ {n,m}? Matches the previous atom between n and m times, while consuming as little input as possible.

    -
    - - Pocessive +
    + + Possessive repeats

    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1048,7 +1048,7 @@ (?=\n?\z).

    - + Continuation Escape
    @@ -1060,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1073,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1125,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1168,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1177,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1222,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1249,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1323,7 +1323,7 @@
    - + Operator precedence
    @@ -1358,7 +1358,7 @@

    - + What gets matched

    @@ -1534,7 +1534,7 @@

    - + Variations

    @@ -1543,7 +1543,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1555,7 +1555,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1567,7 +1567,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 5998d9c5..ca7ef61e 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index bb1c363a..03f1f948 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: July 15, 2010 at 17:14:37 GMT

    Last revised: July 21, 2010 at 10:18:17 GMT


    diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index 5fabfbdf..002a9fa0 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -143,7 +143,7 @@ consume as little input as possible while still producing a match. ={n,m}?= Matches the previous atom between n and m times, while consuming as little input as possible. -[h4 Pocessive repeats] +[h4 Possessive repeats] By default when a repeated pattern does not match then the engine will backtrack until a match is found. However, this behaviour can sometime be undesireable so there are From 2403e7e0d78b2e5599a205a59e6e184bb3ab093e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 5 Aug 2010 17:26:52 +0000 Subject: [PATCH 49/77] Fix broken workaround code. [SVN r64619] --- include/boost/regex/v4/cpp_regex_traits.hpp | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/include/boost/regex/v4/cpp_regex_traits.hpp b/include/boost/regex/v4/cpp_regex_traits.hpp index addc96cd..cd22bd8e 100644 --- a/include/boost/regex/v4/cpp_regex_traits.hpp +++ b/include/boost/regex/v4/cpp_regex_traits.hpp @@ -827,20 +827,20 @@ template bool cpp_regex_traits_implementation::isctype(const charT c, char_class_type mask) const { return - ((mask & ::boost::re_detail::char_class_space) && (m_pctype->is(std::ctype::space, c))) - || ((mask & ::boost::re_detail::char_class_print) && (m_pctype->is(std::ctype::print, c))) - || ((mask & ::boost::re_detail::char_class_cntrl) && (m_pctype->is(std::ctype::cntrl, c))) - || ((mask & ::boost::re_detail::char_class_upper) && (m_pctype->is(std::ctype::upper, c))) - || ((mask & ::boost::re_detail::char_class_lower) && (m_pctype->is(std::ctype::lower, c))) - || ((mask & ::boost::re_detail::char_class_alpha) && (m_pctype->is(std::ctype::alpha, c))) - || ((mask & ::boost::re_detail::char_class_digit) && (m_pctype->is(std::ctype::digit, c))) - || ((mask & ::boost::re_detail::char_class_punct) && (m_pctype->is(std::ctype::punct, c))) - || ((mask & ::boost::re_detail::char_class_xdigit) && (m_pctype->is(std::ctype::xdigit, c))) - || ((mask & ::boost::re_detail::char_class_blank) && (m_pctype->is(std::ctype::space, c)) && !::boost::re_detail::is_separator(c)) + ((mask & ::boost::re_detail::char_class_space) && (this->m_pctype->is(std::ctype::space, c))) + || ((mask & ::boost::re_detail::char_class_print) && (this->m_pctype->is(std::ctype::print, c))) + || ((mask & ::boost::re_detail::char_class_cntrl) && (this->m_pctype->is(std::ctype::cntrl, c))) + || ((mask & ::boost::re_detail::char_class_upper) && (this->m_pctype->is(std::ctype::upper, c))) + || ((mask & ::boost::re_detail::char_class_lower) && (this->m_pctype->is(std::ctype::lower, c))) + || ((mask & ::boost::re_detail::char_class_alpha) && (this->m_pctype->is(std::ctype::alpha, c))) + || ((mask & ::boost::re_detail::char_class_digit) && (this->m_pctype->is(std::ctype::digit, c))) + || ((mask & ::boost::re_detail::char_class_punct) && (this->m_pctype->is(std::ctype::punct, c))) + || ((mask & ::boost::re_detail::char_class_xdigit) && (this->m_pctype->is(std::ctype::xdigit, c))) + || ((mask & ::boost::re_detail::char_class_blank) && (this->m_pctype->is(std::ctype::space, c)) && !::boost::re_detail::is_separator(c)) || ((mask & ::boost::re_detail::char_class_word) && (c == '_')) || ((mask & ::boost::re_detail::char_class_unicode) && ::boost::re_detail::is_extended(c)) || ((mask & ::boost::re_detail::char_class_vertical_space) && (is_separator(c) || (c == '\v'))) - || ((mask & ::boost::re_detail::char_class_horizontal_space) && m_pctype->is(std::ctype::space, c) && !(is_separator(c) || (c == '\v'))); + || ((mask & ::boost::re_detail::char_class_horizontal_space) && this->m_pctype->is(std::ctype::space, c) && !(is_separator(c) || (c == '\v'))); } #endif From d29ed80b69516df9bc932ce21178226be829e474 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 6 Aug 2010 09:17:42 +0000 Subject: [PATCH 50/77] Move inline methods class inline to suppress gcc warnings about different linkage specs. [SVN r64626] --- include/boost/regex/pending/static_mutex.hpp | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/include/boost/regex/pending/static_mutex.hpp b/include/boost/regex/pending/static_mutex.hpp index 334ef27d..9c10050b 100644 --- a/include/boost/regex/pending/static_mutex.hpp +++ b/include/boost/regex/pending/static_mutex.hpp @@ -96,8 +96,14 @@ class BOOST_REGEX_DECL scoped_static_mutex_lock public: scoped_static_mutex_lock(static_mutex& mut, bool lk = true); ~scoped_static_mutex_lock(); - operator void const*()const; - bool locked()const; + operator void const*()const + { + return locked() ? this : 0; + } + bool locked()const + { + return m_have_lock; + } void lock(); void unlock(); private: @@ -107,16 +113,6 @@ private: scoped_static_mutex_lock& operator=(const scoped_static_mutex_lock&); }; -inline scoped_static_mutex_lock::operator void const*()const -{ - return locked() ? this : 0; -} - -inline bool scoped_static_mutex_lock::locked()const -{ - return m_have_lock; -} - } // namespace #else From 2b2fbdb02674a911d004bf7555d7f23b5edaaf6a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 6 Aug 2010 09:26:12 +0000 Subject: [PATCH 51/77] Add Cygwin/Mingw linkage requirements. Fixes #4498. [SVN r64627] --- example/Jamfile.v2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/example/Jamfile.v2 b/example/Jamfile.v2 index 66bf2b48..82098387 100644 --- a/example/Jamfile.v2 +++ b/example/Jamfile.v2 @@ -14,6 +14,9 @@ project gcc:all gcc:-Wextra U_USING_ICU_NAMESPACE=0 + gcc-mw:static + gcc-mingw:static + gcc-cygwin:static ; rule regex-test-run ( sources + : input * : name * ) @@ -74,3 +77,4 @@ test-suite regex-examples : + From 6d53e5ecae61464635903d215f25abafc3062238 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 6 Aug 2010 09:26:37 +0000 Subject: [PATCH 52/77] Change cygwin to use C locale - std::ctype yields incorrect results for xdigit class on this platform. [SVN r64628] --- include/boost/regex/config.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/regex/config.hpp b/include/boost/regex/config.hpp index d55881a3..a88a7852 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -255,6 +255,10 @@ # define BOOST_REGEX_USE_CPP_LOCALE #endif +#if defined(__CYGWIN__) +# define BOOST_REGEX_USE_C_LOCALE +#endif + /* Win32 defaults to native Win32 locale: */ #if defined(_WIN32) && !defined(BOOST_REGEX_USE_WIN32_LOCALE) && !defined(BOOST_REGEX_USE_C_LOCALE) && !defined(BOOST_REGEX_USE_CPP_LOCALE) && !defined(BOOST_REGEX_NO_W32) # define BOOST_REGEX_USE_WIN32_LOCALE From ae013c447c81b63a120480312a349d869ab8621c Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 31 Aug 2010 11:25:56 +0000 Subject: [PATCH 53/77] In Perl mode then "something+++" should be an error. Add the necessary error handling. Fixes #4608. [SVN r65145] --- include/boost/regex/v4/basic_regex_parser.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index 172b53a0..6779383e 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -1003,6 +1003,21 @@ bool basic_regex_parser::parse_repeat(std::size_t low, std::size_ // if(pocessive) { + if(m_position != m_end) + { + // + // Check for illegal following quantifier, we have to do this here, because + // the extra states we insert below circumvents are usual error checking :-( + // + switch(this->m_traits.syntax_type(*m_position)) + { + case regex_constants::syntax_star: + case regex_constants::syntax_plus: + case regex_constants::syntax_question: + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } + } re_brace* pb = static_cast(this->insert_state(insert_point, syntax_element_startmark, sizeof(re_brace))); pb->index = -3; pb->icase = this->flags() & regbase::icase; From f4d925ad3b3f24b575a62e2d5f4b95e733c8c293 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 3 Sep 2010 08:33:13 +0000 Subject: [PATCH 54/77] Up the warning level, and fix the resulting warnings with msvc, gcc and Intel. Fix bug in docs and regenerate. [SVN r65208] --- build/Jamfile.v2 | 33 ++++++- doc/basic_regex.qbk | 4 +- .../background_information/examples.html | 6 +- .../background_information/history.html | 18 ++-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 ++-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 22 ++--- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 ++++++------- doc/html/boost_regex/syntax/basic_syntax.html | 44 ++++----- doc/html/boost_regex/syntax/perl_syntax.html | 96 +++++++++---------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- example/snippets/partial_regex_grep.cpp | 4 +- example/snippets/partial_regex_iterate.cpp | 4 +- include/boost/regex/concepts.hpp | 2 +- include/boost/regex/pending/object_cache.hpp | 16 ++-- include/boost/regex/v4/basic_regex.hpp | 2 +- .../boost/regex/v4/perl_matcher_recursive.hpp | 8 +- include/boost/regex/v4/regex_format.hpp | 8 ++ src/cregex.cpp | 3 + src/icu.cpp | 4 + src/regex.cpp | 3 + src/wide_posix_api.cpp | 4 + test/Jamfile.v2 | 4 +- test/collate_info/collate_info.cpp | 4 + test/concepts/concept_check.cpp | 4 + .../named_subexpressions_test.cpp | 3 + test/pathology/bad_expression_test.cpp | 4 + test/pathology/recursion_test.cpp | 4 + test/regress/test.hpp | 8 ++ test/regress/test_icu.cpp | 24 ++--- test/regress/test_simple_repeats.cpp | 4 + 53 files changed, 314 insertions(+), 230 deletions(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 25266119..c3493ead 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -3,6 +3,11 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt. +project : requirements + # default to all warnings on: + all + ; + # # ICU configuration: # @@ -32,7 +37,32 @@ else lib icuin : : msvc release icuin $(ICU_PATH)/lib shared shared ; lib icuin : : this_is_an_invalid_library_name ; - ICU_OPTS = $(ICU_PATH)/include icuuc/shared/shared icudt/shared/shared icuin/shared/shared $(ICU_PATH)/bin BOOST_HAS_ICU=1 shared ; + if $(ICU_PATH) + { + icuucd_name = [ GLOB $(ICU_PATH)/bin : icuuc??d.dll ] ; + icuuc_name = [ GLOB $(ICU_PATH)/bin : icuuc??.dll ] ; + icudt_name = [ GLOB $(ICU_PATH)/bin : icudt??.dll ] ; + icuin_name = [ GLOB $(ICU_PATH)/bin : icuin??.dll ] ; + icuind_name = [ GLOB $(ICU_PATH)/bin : icuin??d.dll ] ; + + #ECHO $(icuucd_name:B) $(icuuc_name:B) $(icudt_name:B) $(icuin_name:B) $(icuind_name:B) ; + } + + ICU_OPTS = + $(ICU_PATH)/include + icuuc/shared/shared + icudt/shared/shared + icuin/shared/shared + $(ICU_PATH)/bin + BOOST_HAS_ICU=1 + shared + msvc:/delayload:$(icuucd_name:B).dll + msvc:/delayload:$(icuuc_name:B).dll + msvc:/delayload:$(icudt_name:B).dll + msvc:/delayload:$(icuin_name:B).dll + msvc:/delayload:$(icuind_name:B).dll + msvc:delayimp.lib + ; } exe has_icu : ./has_icu_test.cpp : $(ICU_OPTS) ; @@ -70,3 +100,4 @@ lib boost_regex : ../src/$(SOURCES) icu_options boost-install boost_regex ; + diff --git a/doc/basic_regex.qbk b/doc/basic_regex.qbk index 449cd4a7..73816a1d 100644 --- a/doc/basic_regex.qbk +++ b/doc/basic_regex.qbk @@ -145,7 +145,7 @@ The definition of `basic_regex` follows: it is based very closely on class ``[link boost_regex.basic_regex.size size_type size]``() const; ``[link boost_regex.basic_regex.max_size size_type max_size]``() const; ``[link boost_regex.basic_regex.empty bool empty]``() const; - ``[link boost_regex.basic_regex.mark_count unsigned mark_count]``()const; + ``[link boost_regex.basic_regex.mark_count size_type mark_count]``()const; // // modifiers: ``[link boost_regex.basic_regex.assign1 basic_regex& assign]``(const basic_regex& that); @@ -485,7 +485,7 @@ otherwise false. [#boost_regex.basic_regex.mark_count] - unsigned mark_count() const; + size_type mark_count() const; [*Effects]: Returns the number of marked sub-expressions within the regular expresion. diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 2e7cde55..6d49c4da 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -151,7 +151,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -177,7 +177,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index ef6f560f..ab804422 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

    - + Boost 1.44
    @@ -55,7 +55,7 @@ #3890

    - + Boost 1.42
    @@ -84,7 +84,7 @@
    - + Boost 1.40
    @@ -93,7 +93,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -121,7 +121,7 @@
    - + Boost 1.34
    @@ -144,7 +144,7 @@
    - + Boost 1.33.1
    @@ -214,7 +214,7 @@
    - + Boost 1.33.0
    @@ -269,7 +269,7 @@
    - + Boost 1.32.1
    @@ -277,7 +277,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index a16dc05d..6bc23cc8 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index eebfb4fb..8c5117bc 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -73,7 +73,7 @@ the Unicode requirements below.

    - + POSIX

    @@ -93,7 +93,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 976e9a53..6a06c9cf 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 64065262..fbea7ac1 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index d401744e..df3dcc77 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -302,7 +302,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 7b328aa4..568376a7 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index 184bd557..bdf68aa4 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
      basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -177,7 +177,7 @@
        size_type size() const; 
        size_type max_size() const; 
        bool empty() const; 
    -   unsigned mark_count()const; 
    +   size_type mark_count()const; 
        //
        // modifiers: 
        basic_regex& assign(const basic_regex& that); 
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -728,7 +728,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -830,7 +830,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -996,7 +996,7 @@

    -
    unsigned mark_count() const;
    +
    size_type mark_count() const;
     

    Effects: Returns the number of marked sub-expressions @@ -1044,7 +1044,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index be1e107a..273062c2 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -382,7 +382,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index 06c7dab9..56045316 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 3580227f..f8fd3399 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index bfd64b94..fb053022 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 352b7a08..4a4dfa75 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index f9200004..42b27579 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 2ae467a1..9208b690 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 252ef1b2..800f6dc6 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 409d94f0..eb3d1457 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index f19ce29c..02af5666 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

    - + regcomp

    @@ -379,7 +379,7 @@

    - + regerror

    @@ -467,7 +467,7 @@

    - + regexec

    @@ -537,7 +537,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index b24a9391..dacb6e31 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -437,7 +437,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index d887361c..4d00a312 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -361,7 +361,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index b520b401..4002ff79 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -199,7 +199,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 476548df..325ee96d 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -357,7 +357,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 531470f9..05a750a4 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -383,7 +383,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 43943935..57895470 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index f5b56b9c..806669df 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members

    @@ -474,7 +474,7 @@

    - + sub_match non-member operators
    @@ -1009,7 +1009,7 @@ + m2.str().

    - + Stream inserter

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 20e4c05a..b8388c89 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1102,7 +1102,7 @@ cab
    - + What Gets Matched
    @@ -1112,11 +1112,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1137,7 +1137,7 @@ cab used with the -E option.

    - + awk

    @@ -1151,7 +1151,7 @@ cab these by default anyway.

    - + Options

    @@ -1164,7 +1164,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 54a8198d..fc374609 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 6d47d4a0..ae4171d3 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Possessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1048,7 +1048,7 @@ (?=\n?\z).

    - + Continuation Escape
    @@ -1060,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1073,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1125,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1168,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1177,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1222,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1249,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1323,7 +1323,7 @@
    - + Operator precedence
    @@ -1358,7 +1358,7 @@

    - + What gets matched

    @@ -1534,7 +1534,7 @@

    - + Variations

    @@ -1543,7 +1543,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1555,7 +1555,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1567,7 +1567,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index ca7ef61e..78347b61 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index 03f1f948..074d08a8 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: July 21, 2010 at 10:18:17 GMT

    Last revised: September 02, 2010 at 17:43:51 GMT


    diff --git a/example/snippets/partial_regex_grep.cpp b/example/snippets/partial_regex_grep.cpp index ed8a5923..5d1fca07 100644 --- a/example/snippets/partial_regex_grep.cpp +++ b/example/snippets/partial_regex_grep.cpp @@ -54,9 +54,9 @@ void search(std::istream& is) while(have_more) { // how much do we copy forward from last try: - unsigned leftover = (buf + sizeof(buf)) - next_pos; + std::ptrdiff_t leftover = (buf + sizeof(buf)) - next_pos; // and how much is left to fill: - unsigned size = next_pos - buf; + std::ptrdiff_t size = next_pos - buf; // copy forward whatever we have left: std::memmove(buf, next_pos, leftover); // fill the rest from the stream: diff --git a/example/snippets/partial_regex_iterate.cpp b/example/snippets/partial_regex_iterate.cpp index aee78ab6..065438ab 100644 --- a/example/snippets/partial_regex_iterate.cpp +++ b/example/snippets/partial_regex_iterate.cpp @@ -44,9 +44,9 @@ void search(std::istream& is) while(have_more) { // how much do we copy forward from last try: - unsigned leftover = (buf + sizeof(buf)) - next_pos; + std::ptrdiff_t leftover = (buf + sizeof(buf)) - next_pos; // and how much is left to fill: - unsigned size = next_pos - buf; + std::ptrdiff_t size = next_pos - buf; // copy forward whatever we have left: std::memmove(buf, next_pos, leftover); // fill the rest from the stream: diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 6ef88642..f3ca53d4 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -412,7 +412,7 @@ struct BaseRegexConcept // access: const Regex ce; - unsigned i = ce.mark_count(); + typename Regex::size_type i = ce.mark_count(); ignore_unused_variable_warning(i); m_flags = ce.flags(); e.imbue(ce.getloc()); diff --git a/include/boost/regex/pending/object_cache.hpp b/include/boost/regex/pending/object_cache.hpp index e1aa191d..db60e28a 100644 --- a/include/boost/regex/pending/object_cache.hpp +++ b/include/boost/regex/pending/object_cache.hpp @@ -41,10 +41,10 @@ public: typedef std::map map_type; typedef typename map_type::iterator map_iterator; typedef typename list_type::size_type size_type; - static boost::shared_ptr get(const Key& k, size_type max_cache_size); + static boost::shared_ptr get(const Key& k, size_type l_max_cache_size); private: - static boost::shared_ptr do_get(const Key& k, size_type max_cache_size); + static boost::shared_ptr do_get(const Key& k, size_type l_max_cache_size); struct data { @@ -58,7 +58,7 @@ private: }; template -boost::shared_ptr object_cache::get(const Key& k, size_type max_cache_size) +boost::shared_ptr object_cache::get(const Key& k, size_type l_max_cache_size) { #ifdef BOOST_HAS_THREADS static boost::static_mutex mut = BOOST_STATIC_MUTEX_INIT; @@ -66,7 +66,7 @@ boost::shared_ptr object_cache::get(const Key& k, siz boost::static_mutex::scoped_lock l(mut); if(l) { - return do_get(k, max_cache_size); + return do_get(k, l_max_cache_size); } // // what do we do if the lock fails? @@ -77,12 +77,12 @@ boost::shared_ptr object_cache::get(const Key& k, siz return boost::shared_ptr(); #endif #else - return do_get(k, max_cache_size); + return do_get(k, l_max_cache_size); #endif } template -boost::shared_ptr object_cache::do_get(const Key& k, size_type max_cache_size) +boost::shared_ptr object_cache::do_get(const Key& k, size_type l_max_cache_size) { typedef typename object_cache::data object_data; typedef typename map_type::size_type map_size_type; @@ -128,7 +128,7 @@ boost::shared_ptr object_cache::do_get(const Key& k, BOOST_ASSERT(s_data.index[k]->first.get() == result.get()); BOOST_ASSERT(&(s_data.index.find(k)->first) == s_data.cont.back().second); BOOST_ASSERT(s_data.index.find(k)->first == k); - if(s > max_cache_size) + if(s > l_max_cache_size) { // // We have too many items in the list, so we need to start @@ -137,7 +137,7 @@ boost::shared_ptr object_cache::do_get(const Key& k, // list_iterator pos = s_data.cont.begin(); list_iterator last = s_data.cont.end(); - while((pos != last) && (s > max_cache_size)) + while((pos != last) && (s > l_max_cache_size)) { if(pos->first.unique()) { diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index 09b0467b..f807fce9 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -70,7 +70,7 @@ class named_subexpressions_base { public: virtual int get_id(const charT* i, const charT* j)const = 0; - virtual int get_id(std::size_t hash)const = 0; + virtual int get_id(std::size_t h)const = 0; #ifdef __GNUC__ // warning supression: virtual ~named_subexpressions_base(){} diff --git a/include/boost/regex/v4/perl_matcher_recursive.hpp b/include/boost/regex/v4/perl_matcher_recursive.hpp index 74c29122..07a1c20f 100644 --- a/include/boost/regex/v4/perl_matcher_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_recursive.hpp @@ -200,11 +200,11 @@ bool perl_matcher::match_startmark() BidiIterator saved_position = position; const re_syntax_base* next_pstate = static_cast(pstate->next.p)->alt.p->next.p; pstate = pstate->next.p->next.p; - bool r = match_all_states(); + bool res = match_all_states(); position = saved_position; if(negated) - r = !r; - if(r) + res = !res; + if(res) pstate = next_pstate; else pstate = alt->alt.p; @@ -901,7 +901,7 @@ bool perl_matcher::match_endmark() { recursion_info saved = recursion_stack.back(); recursion_stack.pop_back(); - const re_syntax_base* saved_state = pstate = saved.preturn_address; + pstate = saved.preturn_address; repeater_count* saved_count = next_count; next_count = saved.repeater_stack; *m_presult = saved.results; diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index 2bd6bac1..4406839f 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -153,6 +153,11 @@ private: typedef typename boost::is_convertible::type tag_type; return get_named_sub_index(i, j, tag_type()); } +#ifdef BOOST_MSVC + // msvc-8.0 issues a spurious warning on the call to std::advance here: +#pragma warning(push) +#pragma warning(disable:4244) +#endif inline int toi(ForwardIter& i, ForwardIter j, int base, const boost::mpl::false_&) { if(i != j) @@ -166,6 +171,9 @@ private: } return -1; } +#ifdef BOOST_MSVC +#pragma warning(pop) +#endif inline int toi(ForwardIter& i, ForwardIter j, int base, const boost::mpl::true_&) { return m_traits.toi(i, j, base); diff --git a/src/cregex.cpp b/src/cregex.cpp index f67d3718..5c27330c 100644 --- a/src/cregex.cpp +++ b/src/cregex.cpp @@ -31,6 +31,9 @@ typedef boost::match_flag_type match_flag_type; #ifdef BOOST_MSVC #pragma warning(disable:4309) #endif +#ifdef BOOST_INTEL +#pragma warning(disable:981 383) +#endif namespace boost{ diff --git a/src/icu.cpp b/src/icu.cpp index 75ca1444..2fa2b3b1 100644 --- a/src/icu.cpp +++ b/src/icu.cpp @@ -22,6 +22,10 @@ #define BOOST_REGEX_ICU_INSTANTIATE #include +#ifdef BOOST_INTEL +#pragma warning(disable:981 2259 383) +#endif + namespace boost{ namespace re_detail{ diff --git a/src/regex.cpp b/src/regex.cpp index 0a503820..1f1caa6f 100644 --- a/src/regex.cpp +++ b/src/regex.cpp @@ -44,6 +44,9 @@ #endif #endif +#ifdef BOOST_INTEL +#pragma warning(disable:383) +#endif namespace boost{ diff --git a/src/wide_posix_api.cpp b/src/wide_posix_api.cpp index bdb7580e..3c693c67 100644 --- a/src/wide_posix_api.cpp +++ b/src/wide_posix_api.cpp @@ -29,6 +29,10 @@ #include #include +#ifdef BOOST_INTEL +#pragma warning(disable:981) +#endif + #if defined(BOOST_NO_STDC_NAMESPACE) || defined(__NetBSD__) namespace std{ # ifndef BOOST_NO_SWPRINTF diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 343db03a..18af0d7d 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -13,8 +13,7 @@ project # There are unidentified linker problems on these platforms: mipspro-7.4:static sun-5.9:static - msvc:all - gcc:all + all gcc:-Wextra gcc:-Wshadow U_USING_ICU_NAMESPACE=0 @@ -78,6 +77,7 @@ lib boost_regex_recursive : ../src/wide_posix_api.cpp ../src/winstances.cpp ../src/usinstances.cpp + ../build//icu_options : BOOST_REGEX_RECURSIVE=1 shared:BOOST_REGEX_DYN_LINK=1 diff --git a/test/collate_info/collate_info.cpp b/test/collate_info/collate_info.cpp index c07fbd3c..ab3e1051 100644 --- a/test/collate_info/collate_info.cpp +++ b/test/collate_info/collate_info.cpp @@ -14,6 +14,10 @@ #include #include +#ifdef BOOST_INTEL +#pragma warning(disable:1418 981 983 2259) +#endif + #ifdef BOOST_NO_STDC_NAMESPACE namespace std{ using ::strxfrm; diff --git a/test/concepts/concept_check.cpp b/test/concepts/concept_check.cpp index 42e9859d..21448f21 100644 --- a/test/concepts/concept_check.cpp +++ b/test/concepts/concept_check.cpp @@ -18,6 +18,10 @@ #ifdef __BORLANDC__ #pragma option -w-8019 -w-8004 -w-8008 #endif +#ifdef BOOST_INTEL +#pragma warning(disable:1418 981 983 595 383) +#endif + #include #include #if !BOOST_WORKAROUND(_MSC_VER, < 1310) && !defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(__IBMCPP__) && !BOOST_WORKAROUND(__GNUC__, < 3) diff --git a/test/named_subexpressions/named_subexpressions_test.cpp b/test/named_subexpressions/named_subexpressions_test.cpp index 41011415..c4c238ae 100644 --- a/test/named_subexpressions/named_subexpressions_test.cpp +++ b/test/named_subexpressions/named_subexpressions_test.cpp @@ -12,6 +12,9 @@ #include #include +#ifdef BOOST_INTEL +#pragma warning(disable:1418 981 983 383) +#endif template void test_named_subexpressions(charT) diff --git a/test/pathology/bad_expression_test.cpp b/test/pathology/bad_expression_test.cpp index 34f21c22..7354d584 100644 --- a/test/pathology/bad_expression_test.cpp +++ b/test/pathology/bad_expression_test.cpp @@ -20,6 +20,10 @@ #include #include +#ifdef BOOST_INTEL +#pragma warning(disable:1418 981 983 383) +#endif + int test_main( int , char* [] ) { std::string bad_text(1024, ' '); diff --git a/test/pathology/recursion_test.cpp b/test/pathology/recursion_test.cpp index 829caed0..ec187338 100644 --- a/test/pathology/recursion_test.cpp +++ b/test/pathology/recursion_test.cpp @@ -20,6 +20,10 @@ #include #include +#ifdef BOOST_INTEL +#pragma warning(disable:1418 981 983 383) +#endif + int test_main( int , char* [] ) { // this regex will recurse twice for each whitespace character matched: diff --git a/test/regress/test.hpp b/test/regress/test.hpp index 9e271288..02a08ef1 100644 --- a/test/regress/test.hpp +++ b/test/regress/test.hpp @@ -19,6 +19,14 @@ #ifndef BOOST_REGEX_REGRESS_TEST_HPP #define BOOST_REGEX_REGRESS_TEST_HPP + +#include + +#ifdef BOOST_INTEL +// disable Intel's "remarks": +#pragma warning(disable:1418 981 383 1419 7) +#endif + #include #include "test_not_regex.hpp" #include "test_regex_search.hpp" diff --git a/test/regress/test_icu.cpp b/test/regress/test_icu.cpp index 16f667d9..feb5b4a4 100644 --- a/test/regress/test_icu.cpp +++ b/test/regress/test_icu.cpp @@ -342,13 +342,13 @@ void test_icu(const wchar_t&, const test_regex_search_tag& ) { BOOST_REGEX_TEST_ERROR("Expression did not compile when it should have done: " << e.what(), UChar32); } - catch(const std::runtime_error& r) + catch(const std::runtime_error& e) { - BOOST_REGEX_TEST_ERROR("Received an unexpected std::runtime_error: " << r.what(), UChar32); + BOOST_REGEX_TEST_ERROR("Received an unexpected std::runtime_error: " << e.what(), UChar32); } - catch(const std::exception& r) + catch(const std::exception& e) { - BOOST_REGEX_TEST_ERROR("Received an unexpected std::exception: " << r.what(), UChar32); + BOOST_REGEX_TEST_ERROR("Received an unexpected std::exception: " << e.what(), UChar32); } catch(...) { @@ -418,15 +418,15 @@ void test_icu(const wchar_t&, const test_invalid_regex_tag&) { have_catch = true; } - catch(const std::runtime_error& r) + catch(const std::runtime_error& e) { have_catch = true; - BOOST_REGEX_TEST_ERROR("Expected a bad_expression exception, but a std::runtime_error instead: " << r.what(), wchar_t); + BOOST_REGEX_TEST_ERROR("Expected a bad_expression exception, but a std::runtime_error instead: " << e.what(), wchar_t); } - catch(const std::exception& r) + catch(const std::exception& e) { have_catch = true; - BOOST_REGEX_TEST_ERROR("Expected a bad_expression exception, but a std::exception instead: " << r.what(), wchar_t); + BOOST_REGEX_TEST_ERROR("Expected a bad_expression exception, but a std::exception instead: " << e.what(), wchar_t); } catch(...) { @@ -624,13 +624,13 @@ void test_icu(const wchar_t&, const test_regex_replace_tag&) { BOOST_REGEX_TEST_ERROR("Expression did not compile when it should have done: " << e.what(), UChar32); } - catch(const std::runtime_error& r) + catch(const std::runtime_error& e) { - BOOST_REGEX_TEST_ERROR("Received an unexpected std::runtime_error: " << r.what(), UChar32); + BOOST_REGEX_TEST_ERROR("Received an unexpected std::runtime_error: " << e.what(), UChar32); } - catch(const std::exception& r) + catch(const std::exception& e) { - BOOST_REGEX_TEST_ERROR("Received an unexpected std::exception: " << r.what(), UChar32); + BOOST_REGEX_TEST_ERROR("Received an unexpected std::exception: " << e.what(), UChar32); } catch(...) { diff --git a/test/regress/test_simple_repeats.cpp b/test/regress/test_simple_repeats.cpp index 1ebdc707..30bcae5a 100644 --- a/test/regress/test_simple_repeats.cpp +++ b/test/regress/test_simple_repeats.cpp @@ -476,5 +476,9 @@ void test_pocessive_repeats() TEST_REGEX_SEARCH("x{1,5}+\\w", perl, "xxxxxa", match_default, make_array(0, 6, -2, -2)); TEST_REGEX_SEARCH("x{1,4}+\\w", perl, "xxxxxa", match_default, make_array(0, 5, -2, -2)); TEST_REGEX_SEARCH("x{1,3}+\\w", perl, "xxxxxa", match_default, make_array(0, 4, -2, 4, 6, -2, -2)); + TEST_INVALID_REGEX("\\d+++", perl); + TEST_INVALID_REGEX("\\d*++", perl); + TEST_INVALID_REGEX("\\d?++", perl); + TEST_INVALID_REGEX("\\d{1,2}++", perl); } From 6c24ae271803b6213a20b37159c1f85b525cc60d Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 13 Sep 2010 08:19:25 +0000 Subject: [PATCH 55/77] Add } to the list of special characters and regenerate docs. [SVN r65410] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 18 ++-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 +-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 ++-- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 68 ++++++------- doc/html/boost_regex/syntax/basic_syntax.html | 44 ++++----- doc/html/boost_regex/syntax/perl_syntax.html | 98 +++++++++---------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/syntax_extended.qbk | 2 +- doc/syntax_perl.qbk | 2 +- 33 files changed, 197 insertions(+), 197 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 6d49c4da..c3d0297e 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -151,7 +151,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -177,7 +177,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index ab804422..5910c90d 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

    - + Boost 1.44
    @@ -55,7 +55,7 @@ #3890

    - + Boost 1.42
    @@ -84,7 +84,7 @@
    - + Boost 1.40
    @@ -93,7 +93,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -121,7 +121,7 @@
    - + Boost 1.34
    @@ -144,7 +144,7 @@
    - + Boost 1.33.1
    @@ -214,7 +214,7 @@
    - + Boost 1.33.0
    @@ -269,7 +269,7 @@
    - + Boost 1.32.1
    @@ -277,7 +277,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 6bc23cc8..93ed9d17 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 8c5117bc..273d5e86 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -73,7 +73,7 @@ the Unicode requirements below.

    - + POSIX

    @@ -93,7 +93,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 6a06c9cf..a1751809 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index fbea7ac1..7a821a52 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index df3dcc77..05fb6f01 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -96,11 +96,11 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -302,7 +302,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -347,7 +347,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 568376a7..f149253d 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index bdf68aa4..e71c3dc8 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
      basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -728,7 +728,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -830,7 +830,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1044,7 +1044,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 273062c2..d142a7c5 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -382,7 +382,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index 56045316..25082330 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index f8fd3399..0db0d879 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index fb053022..400f65cf 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 4a4dfa75..4095dca8 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 42b27579..e563639d 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 9208b690..6b3de878 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Unicode Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 800f6dc6..17bae93d 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index eb3d1457..8a75d8e3 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 02af5666..1e396296 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -165,7 +165,7 @@

    - + regcomp

    @@ -379,7 +379,7 @@

    - + regerror

    @@ -467,7 +467,7 @@

    - + regexec

    @@ -537,7 +537,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index dacb6e31..bd55c7d7 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -437,7 +437,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 4d00a312..aa689144 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -361,7 +361,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 4002ff79..1242ac11 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -199,7 +199,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 325ee96d..4d2bfe6f 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -357,7 +357,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 05a750a4..ac9d7153 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -383,7 +383,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 57895470..606173a3 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 806669df..c2c7c93e 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members

    @@ -474,7 +474,7 @@

    - + sub_match non-member operators
    @@ -1009,7 +1009,7 @@ + m2.str().

    - + Stream inserter

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index b8388c89..d5858897 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -54,9 +54,9 @@ In POSIX-Extended regular expressions, all characters match themselves except for the following special characters:

    -
    .[{()\*+?|^$
    +
    .[{}()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1102,7 +1102,7 @@ cab
    - + What Gets Matched
    @@ -1112,11 +1112,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1137,7 +1137,7 @@ cab used with the -E option.

    - + awk

    @@ -1151,7 +1151,7 @@ cab these by default anyway.

    - + Options

    @@ -1164,7 +1164,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index fc374609..066a42ac 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index ae4171d3..e1d73cb5 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -51,9 +51,9 @@ In Perl regular expressions, all characters match themselves except for the following special characters:

    -
    .[{()\*+?|^$
    +
    .[{}()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Possessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1048,7 +1048,7 @@ (?=\n?\z).

    - + Continuation Escape
    @@ -1060,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1073,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1125,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1168,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1177,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1222,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1249,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1323,7 +1323,7 @@
    - + Operator precedence
    @@ -1358,7 +1358,7 @@

    - + What gets matched

    @@ -1534,7 +1534,7 @@

    - + Variations

    @@ -1543,7 +1543,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1555,7 +1555,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1567,7 +1567,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 78347b61..385442c6 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index 074d08a8..4c6d3577 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -196,7 +196,7 @@

    - +

    Last revised: September 02, 2010 at 17:43:51 GMT

    Last revised: September 13, 2010 at 08:16:43 GMT


    diff --git a/doc/syntax_extended.qbk b/doc/syntax_extended.qbk index 103a0888..3548dba6 100644 --- a/doc/syntax_extended.qbk +++ b/doc/syntax_extended.qbk @@ -25,7 +25,7 @@ Boost.Regex by passing the flag `extended` to the regex constructor, for example In POSIX-Extended regular expressions, all characters match themselves except for the following special characters: -[pre .\[{()\\\*+?|^$] +[pre .\[{}()\\\*+?|^$] [h4 Wildcard:] diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index 002a9fa0..4abf94a4 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -26,7 +26,7 @@ default behavior in Boost.Regex or you can pass the flag =perl= to the In Perl regular expressions, all characters match themselves except for the following special characters: -[pre .\[{()\\\*+?|^$] +[pre .\[{}()\\\*+?|^$] [h4 Wildcard] From 383f3b21441dd7f8211b6beefd8047d876ec2562 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 20 Sep 2010 16:56:48 +0000 Subject: [PATCH 56/77] Add option to explicitly disable ICU support. Update docs to describe new ICU config support. [SVN r65489] --- build/Jamfile.v2 | 105 ++++++++------- .../boost_regex/background_information.html | 2 +- .../acknowledgements.html | 2 +- .../background_information/examples.html | 8 +- .../background_information/faq.html | 2 +- .../background_information/futher.html | 2 +- .../background_information/headers.html | 2 +- .../background_information/history.html | 20 +-- .../background_information/locale.html | 10 +- .../background_information/performance.html | 2 +- .../background_information/redist.html | 2 +- .../background_information/standards.html | 12 +- .../background_information/thread_safety.html | 2 +- doc/html/boost_regex/captures.html | 8 +- doc/html/boost_regex/configuration.html | 2 +- .../boost_regex/configuration/algorithm.html | 2 +- .../boost_regex/configuration/compiler.html | 2 +- .../boost_regex/configuration/linkage.html | 2 +- .../boost_regex/configuration/locale.html | 2 +- .../boost_regex/configuration/tuning.html | 2 +- doc/html/boost_regex/format.html | 2 +- .../format/boost_format_syntax.html | 10 +- doc/html/boost_regex/format/perl_format.html | 2 +- doc/html/boost_regex/format/sed_format.html | 2 +- doc/html/boost_regex/install.html | 126 +++++++++++++----- .../introduction_and_overview.html | 2 +- doc/html/boost_regex/partial_matches.html | 2 +- doc/html/boost_regex/ref.html | 2 +- doc/html/boost_regex/ref/bad_expression.html | 6 +- doc/html/boost_regex/ref/basic_regex.html | 20 +-- doc/html/boost_regex/ref/concepts.html | 2 +- .../ref/concepts/charT_concept.html | 2 +- .../ref/concepts/iterator_concepts.html | 2 +- .../ref/concepts/traits_concept.html | 6 +- .../ref/deprecated_interfaces.html | 2 +- .../ref/deprecated_interfaces/old_regex.html | 2 +- .../deprecated_interfaces/regex_format.html | 4 +- .../ref/deprecated_interfaces/regex_grep.html | 2 +- .../deprecated_interfaces/regex_split.html | 2 +- doc/html/boost_regex/ref/error_type.html | 6 +- doc/html/boost_regex/ref/match_flag_type.html | 4 +- doc/html/boost_regex/ref/match_results.html | 6 +- doc/html/boost_regex/ref/non_std_strings.html | 2 +- .../boost_regex/ref/non_std_strings/icu.html | 2 +- .../ref/non_std_strings/icu/intro.html | 2 +- .../ref/non_std_strings/icu/unicode_algo.html | 8 +- .../ref/non_std_strings/icu/unicode_iter.html | 6 +- .../non_std_strings/icu/unicode_types.html | 2 +- .../ref/non_std_strings/mfc_strings.html | 2 +- .../non_std_strings/mfc_strings/mfc_algo.html | 12 +- .../mfc_strings/mfc_intro.html | 2 +- .../non_std_strings/mfc_strings/mfc_iter.html | 6 +- .../mfc_strings/mfc_regex_create.html | 2 +- .../mfc_strings/mfc_regex_types.html | 2 +- doc/html/boost_regex/ref/posix.html | 10 +- doc/html/boost_regex/ref/regex_iterator.html | 6 +- doc/html/boost_regex/ref/regex_match.html | 6 +- doc/html/boost_regex/ref/regex_replace.html | 6 +- doc/html/boost_regex/ref/regex_search.html | 6 +- .../boost_regex/ref/regex_token_iterator.html | 6 +- doc/html/boost_regex/ref/regex_traits.html | 4 +- doc/html/boost_regex/ref/sub_match.html | 10 +- .../boost_regex/ref/syntax_option_type.html | 2 +- .../syntax_option_type_basic.html | 2 +- .../syntax_option_type_extended.html | 2 +- .../syntax_option_type_literal.html | 2 +- .../syntax_option_type_overview.html | 2 +- .../syntax_option_type_perl.html | 2 +- .../syntax_option_type_synopsis.html | 2 +- doc/html/boost_regex/syntax.html | 2 +- .../boost_regex/syntax/basic_extended.html | 68 +++++----- doc/html/boost_regex/syntax/basic_syntax.html | 46 +++---- .../boost_regex/syntax/character_classes.html | 2 +- .../optional_char_class_names.html | 2 +- .../character_classes/std_char_clases.html | 2 +- .../boost_regex/syntax/collating_names.html | 2 +- .../syntax/collating_names/digraphs.html | 2 +- .../syntax/collating_names/named_unicode.html | 2 +- .../collating_names/posix_symbolic_names.html | 2 +- .../syntax/leftmost_longest_rule.html | 2 +- doc/html/boost_regex/syntax/perl_syntax.html | 98 +++++++------- doc/html/boost_regex/unicode.html | 6 +- doc/html/index.html | 6 +- doc/install.qbk | 66 ++++++--- doc/regex.qbk | 4 +- 85 files changed, 462 insertions(+), 371 deletions(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index c3493ead..a8359dda 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -3,66 +3,75 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt. +import modules ; + project : requirements # default to all warnings on: all ; +local disable-icu = [ MATCH (--disable-icu) : [ modules.peek : ARGV ] ] ; + # # ICU configuration: # -if [ modules.peek : ICU_PATH ] -{ - ICU_PATH = [ modules.peek : ICU_PATH ] ; -} -if [ modules.peek : ICU_LINK ] -{ - ICU_LINK = [ modules.peek : ICU_LINK ] ; -} - -if $(ICU_LINK) +if ! $(disable-icu) { - ICU_OPTS = $(ICU_PATH)/include $(ICU_LINK) $(ICU_PATH)/bin BOOST_HAS_ICU=1 shared ; -} -else -{ - lib icuuc : : $(ICU_PATH)/lib shared shared ; - lib icuuc : : msvc debug icuucd $(ICU_PATH)/lib shared shared ; - lib icuuc : : this_is_an_invalid_library_name ; - lib icudt : : $(ICU_PATH)/lib icudata shared shared ; - lib icudt : : $(ICU_PATH)/lib icudt msvc shared shared ; - lib icudt : : this_is_an_invalid_library_name ; - lib icuin : : $(ICU_PATH)/lib icui18n shared shared ; - lib icuin : : msvc debug icuind $(ICU_PATH)/lib shared shared ; - lib icuin : : msvc release icuin $(ICU_PATH)/lib shared shared ; - lib icuin : : this_is_an_invalid_library_name ; - if $(ICU_PATH) - { - icuucd_name = [ GLOB $(ICU_PATH)/bin : icuuc??d.dll ] ; - icuuc_name = [ GLOB $(ICU_PATH)/bin : icuuc??.dll ] ; - icudt_name = [ GLOB $(ICU_PATH)/bin : icudt??.dll ] ; - icuin_name = [ GLOB $(ICU_PATH)/bin : icuin??.dll ] ; - icuind_name = [ GLOB $(ICU_PATH)/bin : icuin??d.dll ] ; - - #ECHO $(icuucd_name:B) $(icuuc_name:B) $(icudt_name:B) $(icuin_name:B) $(icuind_name:B) ; + if [ modules.peek : ICU_PATH ] + { + ICU_PATH = [ modules.peek : ICU_PATH ] ; + } + if [ modules.peek : ICU_LINK ] + { + ICU_LINK = [ modules.peek : ICU_LINK ] ; + } + + if $(ICU_LINK) + { + ICU_OPTS = $(ICU_PATH)/include $(ICU_LINK) $(ICU_PATH)/bin BOOST_HAS_ICU=1 shared ; + } + else + { + lib icuuc : : $(ICU_PATH)/lib shared shared ; + lib icuuc : : msvc debug icuucd $(ICU_PATH)/lib shared shared ; + lib icuuc : : this_is_an_invalid_library_name ; + lib icudt : : $(ICU_PATH)/lib icudata shared shared ; + lib icudt : : $(ICU_PATH)/lib icudt msvc shared shared ; + lib icudt : : this_is_an_invalid_library_name ; + lib icuin : : $(ICU_PATH)/lib icui18n shared shared ; + lib icuin : : msvc debug icuind $(ICU_PATH)/lib shared shared ; + lib icuin : : msvc release icuin $(ICU_PATH)/lib shared shared ; + lib icuin : : this_is_an_invalid_library_name ; + + if $(ICU_PATH) + { + icuucd_name = [ GLOB $(ICU_PATH)/bin : icuuc??d.dll ] ; + icuuc_name = [ GLOB $(ICU_PATH)/bin : icuuc??.dll ] ; + icudt_name = [ GLOB $(ICU_PATH)/bin : icudt??.dll ] ; + icuin_name = [ GLOB $(ICU_PATH)/bin : icuin??.dll ] ; + icuind_name = [ GLOB $(ICU_PATH)/bin : icuin??d.dll ] ; + + #ECHO $(icuucd_name:B) $(icuuc_name:B) $(icudt_name:B) $(icuin_name:B) $(icuind_name:B) ; + } + + ICU_OPTS = + $(ICU_PATH)/include + icuuc/shared/shared + icudt/shared/shared + icuin/shared/shared + $(ICU_PATH)/bin + BOOST_HAS_ICU=1 + shared + msvc:/delayload:$(icuucd_name:B).dll + msvc:/delayload:$(icuuc_name:B).dll + msvc:/delayload:$(icudt_name:B).dll + msvc:/delayload:$(icuin_name:B).dll + msvc:/delayload:$(icuind_name:B).dll + msvc:delayimp.lib + ; } - ICU_OPTS = - $(ICU_PATH)/include - icuuc/shared/shared - icudt/shared/shared - icuin/shared/shared - $(ICU_PATH)/bin - BOOST_HAS_ICU=1 - shared - msvc:/delayload:$(icuucd_name:B).dll - msvc:/delayload:$(icuuc_name:B).dll - msvc:/delayload:$(icudt_name:B).dll - msvc:/delayload:$(icuin_name:B).dll - msvc:/delayload:$(icuind_name:B).dll - msvc:delayimp.lib - ; } exe has_icu : ./has_icu_test.cpp : $(ICU_OPTS) ; diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index 9907bae9..0830591f 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -47,7 +47,7 @@
    -
    -
    - + Test Programs
    @@ -151,7 +151,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -177,7 +177,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    @@ -261,7 +261,7 @@ -
    -
    -
    -
    - + Boost 1.40
    @@ -93,7 +93,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -121,7 +121,7 @@
    - + Boost 1.34
    @@ -144,7 +144,7 @@
    - + Boost 1.33.1
    @@ -214,7 +214,7 @@
    - + Boost 1.33.0
    @@ -269,7 +269,7 @@
    - + Boost 1.32.1
    @@ -277,7 +277,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    @@ -315,7 +315,7 @@ -
    -
    -
    -
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -73,7 +73,7 @@ the Unicode requirements below.

    - + POSIX

    @@ -93,7 +93,7 @@ a custom traits class.

    - + Unicode

    @@ -560,7 +560,7 @@ -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    @@ -89,7 +89,7 @@
     
     
    -
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -327,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -407,7 +407,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -512,7 +512,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -616,7 +616,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -728,7 +728,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -830,7 +830,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1044,7 +1044,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    @@ -1320,7 +1320,7 @@
    -
    -
    -
    -
    - + Additional Optional Requirements
    @@ -581,7 +581,7 @@ -
    -
    -
    -
    -
    -
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    @@ -257,7 +257,7 @@ -
    -
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    @@ -866,7 +866,7 @@ -
    -
    -
    -
    -
    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    @@ -309,7 +309,7 @@ -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - + sub_match non-member operators
    @@ -1009,7 +1009,7 @@ + m2.str().

    - + Stream inserter

    @@ -1025,7 +1025,7 @@ -
    -
    -
    -
    -
    -
    -
    -
    -

    - + Synopsis

    @@ -46,7 +46,7 @@

    - + POSIX Extended Syntax

    @@ -56,7 +56,7 @@

    .[{}()\*+?|^$
    - + Wildcard:

    @@ -74,7 +74,7 @@

    - + Anchors:

    @@ -86,7 +86,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +98,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +184,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +214,7 @@ cab

    - + Alternation

    @@ -227,7 +227,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +240,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +249,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +265,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +274,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +284,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +312,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +329,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +337,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +363,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +552,7 @@ cab
    - + "Single character" character classes:
    @@ -706,7 +706,7 @@ cab
    - + Character Properties
    @@ -813,7 +813,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +888,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +979,7 @@ cab
    - + Continuation Escape
    @@ -991,7 +991,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1005,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1056,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1065,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1102,7 +1102,7 @@ cab
    - + What Gets Matched
    @@ -1112,11 +1112,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1137,7 +1137,7 @@ cab used with the -E option.

    - + awk

    @@ -1151,7 +1151,7 @@ cab these by default anyway.

    - + Options

    @@ -1164,7 +1164,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    @@ -1185,7 +1185,7 @@ cab -

    - + Synopsis

    @@ -45,7 +45,7 @@

    - + POSIX Basic Syntax

    @@ -55,7 +55,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +73,7 @@

    - + Anchors:

    @@ -85,7 +85,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +97,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +155,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +173,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +186,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +195,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +211,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +220,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +230,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +259,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +276,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +284,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +299,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +309,13 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -333,7 +333,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +613,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +627,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    @@ -646,7 +646,7 @@ aaaa -
    -
    -
    -
    -
    - @@ -382,7 +378,7 @@
    -
    -
    -

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{}()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Possessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1048,7 +1048,7 @@ (?=\n?\z).

    - + Continuation Escape
    @@ -1060,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1073,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1125,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1168,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1177,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1222,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1249,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1323,7 +1323,7 @@
    - + Operator precedence
    @@ -1358,7 +1358,7 @@

    - + What gets matched

    @@ -1534,7 +1534,7 @@

    - + Variations

    @@ -1543,7 +1543,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1555,7 +1555,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1567,7 +1567,7 @@ and no_mod_s.

    - + References

    @@ -1576,7 +1576,7 @@ -
    - + Use a Unicode Aware Regular Expression Type.
    @@ -71,7 +71,7 @@ -
    diff --git a/doc/html/boost_regex/background_information/acknowledgements.html b/doc/html/boost_regex/background_information/acknowledgements.html index a501fbf0..f0f20f8b 100644 --- a/doc/html/boost_regex/background_information/acknowledgements.html +++ b/doc/html/boost_regex/background_information/acknowledgements.html @@ -24,8 +24,7 @@

    The author can be contacted at john - at - johnmaddock.co.uk; the home page diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 4f074fb8..83bbdc65 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -24,11 +24,11 @@

    - + Test Programs
    @@ -151,7 +151,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -177,7 +177,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/faq.html b/doc/html/boost_regex/background_information/faq.html index 1295d288..3cdcebc4 100644 --- a/doc/html/boost_regex/background_information/faq.html +++ b/doc/html/boost_regex/background_information/faq.html @@ -24,7 +24,7 @@

    - FAQ +FAQ

    Q. I can't get regex++ to work with escape diff --git a/doc/html/boost_regex/background_information/futher.html b/doc/html/boost_regex/background_information/futher.html index 77272ea2..08bb520d 100644 --- a/doc/html/boost_regex/background_information/futher.html +++ b/doc/html/boost_regex/background_information/futher.html @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/background_information/headers.html b/doc/html/boost_regex/background_information/headers.html index 9716da0a..b4a7f5a6 100644 --- a/doc/html/boost_regex/background_information/headers.html +++ b/doc/html/boost_regex/background_information/headers.html @@ -24,7 +24,7 @@

    There are two main headers used by this library: <boost/regex.hpp> diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index ac6a83e1..11bf5f99 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -23,7 +23,7 @@

    New issues should be submitted at svn.boost.org @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

    - + Boost 1.44
    @@ -55,7 +55,7 @@ #3890

    - + Boost 1.42
    @@ -84,7 +84,7 @@
    - + Boost 1.40
    @@ -93,7 +93,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -121,7 +121,7 @@
    - + Boost 1.34
    @@ -144,7 +144,7 @@
    - + Boost 1.33.1
    @@ -214,7 +214,7 @@
    - + Boost 1.33.0
    @@ -269,7 +269,7 @@
    - + Boost 1.32.1
    @@ -277,7 +277,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 125a700f..a2ddf8d3 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -24,7 +24,7 @@

    Boost.Regex provides extensive support for run-time localization, the localization @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/performance.html b/doc/html/boost_regex/background_information/performance.html index f2324eb7..1f9c477f 100644 --- a/doc/html/boost_regex/background_information/performance.html +++ b/doc/html/boost_regex/background_information/performance.html @@ -24,7 +24,7 @@

    The performance of Boost.Regex in both recursive and non-recursive modes diff --git a/doc/html/boost_regex/background_information/redist.html b/doc/html/boost_regex/background_information/redist.html index d06cf5a8..f4969a0e 100644 --- a/doc/html/boost_regex/background_information/redist.html +++ b/doc/html/boost_regex/background_information/redist.html @@ -24,7 +24,7 @@

    If you are using Microsoft or Borland C++ and link to a dll version of the diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 8f90416c..1d516f79 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -24,11 +24,11 @@

    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -73,7 +73,7 @@ the Unicode requirements below.

    - + POSIX

    @@ -93,7 +93,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/background_information/thread_safety.html b/doc/html/boost_regex/background_information/thread_safety.html index 73c94b13..95197303 100644 --- a/doc/html/boost_regex/background_information/thread_safety.html +++ b/doc/html/boost_regex/background_information/thread_safety.html @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 2988ff5d..9f5ee9ba 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -24,7 +24,7 @@

    @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/configuration.html b/doc/html/boost_regex/configuration.html index 2d6b67b0..904f1e65 100644 --- a/doc/html/boost_regex/configuration.html +++ b/doc/html/boost_regex/configuration.html @@ -24,15 +24,15 @@

    diff --git a/doc/html/boost_regex/configuration/algorithm.html b/doc/html/boost_regex/configuration/algorithm.html index f9bf2626..b87e656a 100644 --- a/doc/html/boost_regex/configuration/algorithm.html +++ b/doc/html/boost_regex/configuration/algorithm.html @@ -24,7 +24,7 @@
    diff --git a/doc/html/boost_regex/configuration/compiler.html b/doc/html/boost_regex/configuration/compiler.html index 078b4e65..8e1adc09 100644 --- a/doc/html/boost_regex/configuration/compiler.html +++ b/doc/html/boost_regex/configuration/compiler.html @@ -24,7 +24,7 @@

    You shouldn't need to do anything special to configure Boost.Regex for use diff --git a/doc/html/boost_regex/configuration/linkage.html b/doc/html/boost_regex/configuration/linkage.html index 9d0e479d..396a5885 100644 --- a/doc/html/boost_regex/configuration/linkage.html +++ b/doc/html/boost_regex/configuration/linkage.html @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/configuration/locale.html b/doc/html/boost_regex/configuration/locale.html index 63da0073..6cc9cefa 100644 --- a/doc/html/boost_regex/configuration/locale.html +++ b/doc/html/boost_regex/configuration/locale.html @@ -24,8 +24,8 @@

    The following macros (see user.hpp) diff --git a/doc/html/boost_regex/configuration/tuning.html b/doc/html/boost_regex/configuration/tuning.html index f56828b9..e65db0b6 100644 --- a/doc/html/boost_regex/configuration/tuning.html +++ b/doc/html/boost_regex/configuration/tuning.html @@ -24,7 +24,7 @@

    The following option applies only if BOOST_REGEX_RECURSIVE is set. diff --git a/doc/html/boost_regex/format.html b/doc/html/boost_regex/format.html index 06abe187..29b13779 100644 --- a/doc/html/boost_regex/format.html +++ b/doc/html/boost_regex/format.html @@ -24,12 +24,12 @@

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 14f8aea0..78856bb8 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -24,7 +24,7 @@

    @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/format/perl_format.html b/doc/html/boost_regex/format/perl_format.html index da25c9e7..ec6920fb 100644 --- a/doc/html/boost_regex/format/perl_format.html +++ b/doc/html/boost_regex/format/perl_format.html @@ -24,7 +24,7 @@

    Perl-style format strings treat all characters as literals except '$' and diff --git a/doc/html/boost_regex/format/sed_format.html b/doc/html/boost_regex/format/sed_format.html index 4fcb2c2f..fb98f7b2 100644 --- a/doc/html/boost_regex/format/sed_format.html +++ b/doc/html/boost_regex/format/sed_format.html @@ -24,7 +24,7 @@

    Sed-style format strings treat all characters as literals except: diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 929ed22b..eb7f9ed7 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -24,7 +24,7 @@

    When you extract the library from its zip file, you must preserve its internal @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -150,11 +150,11 @@

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -356,7 +356,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -401,7 +401,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/partial_matches.html b/doc/html/boost_regex/partial_matches.html index 1b0122cf..ea0a9a3c 100644 --- a/doc/html/boost_regex/partial_matches.html +++ b/doc/html/boost_regex/partial_matches.html @@ -24,7 +24,7 @@
    -

    -

    diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html index d53ffed9..b85609fa 100644 --- a/doc/html/boost_regex/ref.html +++ b/doc/html/boost_regex/ref.html @@ -24,84 +24,84 @@

    -
    basic_regex
    -
    match_results
    -
    sub_match
    -
    regex_match
    -
    regex_search
    -
    regex_replace
    -
    regex_iterator
    -
    regex_token_iterator
    -
    bad_expression
    -
    syntax_option_type
    +
    basic_regex
    +
    match_results
    +
    sub_match
    +
    regex_match
    +
    regex_search
    +
    regex_replace
    +
    regex_iterator
    +
    regex_token_iterator
    +
    bad_expression
    +
    syntax_option_type
    -
    - syntax_option_type Synopsis
    -
    - Overview of syntax_option_type
    -
    - Options for Perl Regular Expressions
    -
    - Options for POSIX Extended Regular Expressions
    -
    - Options for POSIX Basic Regular Expressions
    -
    - Options for Literal Strings
    +
    syntax_option_type + Synopsis
    +
    Overview + of syntax_option_type
    +
    Options + for Perl Regular Expressions
    +
    Options + for POSIX Extended Regular Expressions
    +
    Options + for POSIX Basic Regular Expressions
    +
    Options + for Literal Strings
    -
    match_flag_type
    -
    error_type
    -
    regex_traits
    -
    Interfacing With Non-Standard +
    match_flag_type
    +
    error_type
    +
    regex_traits
    +
    Interfacing With Non-Standard String Types
    -
    Working With - Unicode and ICU String Types
    +
    Working With Unicode + and ICU String Types
    -
    Introduction +
    Introduction to using Regex with ICU
    -
    - Unicode regular expression types
    -
    - Unicode Regular Expression Algorithms
    -
    - Unicode Aware Regex Iterators
    +
    Unicode + regular expression types
    +
    Unicode + Regular Expression Algorithms
    +
    Unicode + Aware Regex Iterators
    -
    Using +
    Using Boost Regex With MFC Strings
    -
    - Introduction to Boost.Regex and MFC Strings
    -
    - Regex Types Used With MFC Strings
    -
    - Regular Expression Creation From an MFC String
    -
    - Overloaded Algorithms For MFC String Types
    -
    - Iterating Over the Matches Within An MFC String
    +
    Introduction + to Boost.Regex and MFC Strings
    +
    Regex + Types Used With MFC Strings
    +
    Regular + Expression Creation From an MFC String
    +
    Overloaded + Algorithms For MFC String Types
    +
    Iterating + Over the Matches Within An MFC String
    -
    POSIX Compatible C API's
    -
    Concepts
    +
    POSIX Compatible C API's
    +
    Concepts
    -
    charT Requirements
    -
    Traits Class +
    charT Requirements
    +
    Traits Class Requirements
    -
    Iterator +
    Iterator Requirements
    Deprecated Interfaces
    -
    - regex_format (Deprecated)
    -
    - regex_grep (Deprecated)
    -
    - regex_split (deprecated)
    -
    High +
    regex_format + (Deprecated)
    +
    regex_grep + (Deprecated)
    +
    regex_split + (deprecated)
    +
    High Level Class RegEx (Deprecated)
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 7d9f8b8e..fe815a81 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -24,10 +24,10 @@
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index 15817ca9..cb5b8c19 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -24,10 +24,10 @@
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -318,16 +318,14 @@ then a constant with the same name, type and value is declared within the scope of basic_regex.

    -

    -

    -
    basic_regex();
    +
    basic_regex();
     

    Effects: Constructs an object of class basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -385,9 +383,7 @@
    -

    -

    -
    basic_regex(const charT* p, flag_type f = regex_constants::normal);
    +
    basic_regex(const charT* p, flag_type f = regex_constants::normal);
     

    Requires: p shall not @@ -407,7 +403,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -489,9 +485,7 @@
    -

    -

    -
    basic_regex(const charT* p1, const charT* p2, 
    +
    basic_regex(const charT* p1, const charT* p2, 
                 flag_type f = regex_constants::normal);
     

    @@ -512,7 +506,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -594,9 +588,7 @@
    -

    -

    -
    basic_regex(const charT* p, size_type len, flag_type f);
    +
    basic_regex(const charT* p, size_type len, flag_type f);
     

    Requires: p shall not @@ -616,7 +608,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -699,18 +691,14 @@
    -

    -

    -
    basic_regex(const basic_regex& e);
    +
    basic_regex(const basic_regex& e);
     

    Effects: Constructs an object of class basic_regex as a copy of the object e.

    -

    -

    -
    template <class ST, class SA>
    +
    template <class ST, class SA>
     basic_regex(const basic_string<charT, ST, SA>& s, 
                 flag_type f = regex_constants::normal);
     
    @@ -728,7 +716,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -810,9 +798,7 @@
    -

    -

    -
    template <class ForwardIterator>
    +
    template <class ForwardIterator>
     basic_regex(ForwardIterator first, ForwardIterator last, 
                 flag_type f = regex_constants::normal);
     
    @@ -830,7 +816,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -912,16 +898,12 @@
    -

    -

    -
    basic_regex& operator=(const basic_regex& e);
    +
    basic_regex& operator=(const basic_regex& e);
     

    Effects: Returns the result of assign(e.str(), e.flags()).

    -

    -

    -
    basic_regex& operator=(const charT* ptr);
    +
    basic_regex& operator=(const charT* ptr);
     

    Requires: p shall not @@ -930,17 +912,13 @@

    Effects: Returns the result of assign(ptr).

    -

    -

    -
    template <class ST, class SA>
    +
    template <class ST, class SA>
     basic_regex& operator=(const basic_string<charT, ST, SA>& p);
     

    Effects: Returns the result of assign(p).

    -

    -

    -
    std::pair<const_iterator, const_iterator> subexpression(size_type n) const;
    +
    std::pair<const_iterator, const_iterator> subexpression(size_type n) const;
     

    Effects: Returns a pair of iterators denoting @@ -954,78 +932,58 @@ set. Argument n must be in within the range 1 <= n < mark_count().

    -

    -

    -
    const_iterator begin() const;
    +
    const_iterator begin() const;
     

    Effects: Returns a starting iterator to a sequence of characters representing the regular expression.

    -

    -

    -
    const_iterator end() const;
    +
    const_iterator end() const;
     

    Effects: Returns termination iterator to a sequence of characters representing the regular expression.

    -

    -

    -
    size_type size() const;
    +
    size_type size() const;
     

    Effects: Returns the length of the sequence of characters representing the regular expression.

    -

    -

    -
    size_type max_size() const;
    +
    size_type max_size() const;
     

    Effects: Returns the maximum length of the sequence of characters representing the regular expression.

    -

    -

    -
    bool empty() const;
    +
    bool empty() const;
     

    Effects: Returns true if the object does not contain a valid regular expression, otherwise false.

    -

    -

    -
    size_type mark_count() const;
    +
    size_type mark_count() const;
     

    Effects: Returns the number of marked sub-expressions within the regular expresion.

    -

    -

    -
    basic_regex& assign(const basic_regex& that);
    +
    basic_regex& assign(const basic_regex& that);
     

    Effects: Returns assign(that.str(), that.flags()).

    -

    -

    -
    basic_regex& assign(const charT* ptr, flag_type f = regex_constants::normal);
    +
    basic_regex& assign(const charT* ptr, flag_type f = regex_constants::normal);
     

    Effects: Returns assign(string_type(ptr), f).

    -

    -

    -
    basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
    +
    basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
     

    Effects: Returns assign(string_type(ptr, len), f).

    -

    -

    -
    template <class string_traits, class A>
    +
    template <class string_traits, class A>
     basic_regex& assign(const basic_string<charT, string_traits, A>& s,
                       flag_type f = regex_constants::normal);
     
    @@ -1044,7 +1002,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    @@ -1126,9 +1084,7 @@
    -

    -

    -
    template <class InputIterator>
    +
    template <class InputIterator>
     basic_regex& assign(InputIterator first, InputIterator last,
                         flag_type f = regex_constants::normal);
     
    @@ -1140,44 +1096,34 @@

    Effects: Returns assign(string_type(first, last), f).

    -

    -

    -
    flag_type flags() const;
    +
    flag_type flags() const;
     

    Effects: Returns a copy of the regular expression syntax flags that were passed to the object's constructor, or the last call to assign.

    -

    -

    -
    int status() const;
    +
    int status() const;
     

    Effects: Returns zero if the expression contains a valid regular expression, otherwise an error code. This member function is retained for use in environments that cannot use exception handling.

    -

    -

    -
    basic_string<charT> str() const;
    +
    basic_string<charT> str() const;
     

    Effects: Returns a copy of the character sequence passed to the object's constructor, or the last call to assign.

    -

    -

    -
    int compare(basic_regex& e)const;
    +
    int compare(basic_regex& e)const;
     

    Effects: If flags() == e.flags() then returns str().compare(e.str()), otherwise returns flags() - e.flags().

    -

    -

    -
    locale_type imbue(locale_type l);
    +
    locale_type imbue(locale_type l);
     

    Effects: Returns the result of traits_inst.imbue(l) where @@ -1189,9 +1135,7 @@

    Postcondition: empty() == true.

    -

    -

    -
    locale_type getloc() const;
    +
    locale_type getloc() const;
     

    Effects: Returns the result of traits_inst.getloc() @@ -1199,9 +1143,7 @@ initialized) instance of the template parameter traits stored within the object.

    -

    -

    -
    void swap(basic_regex& e) throw();
    +
    void swap(basic_regex& e) throw();
     

    Effects: Swaps the contents of the two regular @@ -1228,9 +1170,7 @@ code that may need to be ported to other implementations of basic_regex.

    -

    -

    -
    template <class charT, class traits>
    +
    template <class charT, class traits>
     bool operator == (const basic_regex<charT, traits>& lhs,
                       const basic_regex<charT, traits>& rhs);
     
    @@ -1238,9 +1178,7 @@ Effects: Returns lhs.compare(rhs) == 0.

    -

    -

    -
    template <class charT, class traits>
    +
    template <class charT, class traits>
     bool operator != (const basic_regex<charT, traits>& lhs,
                       const basic_regex<charT, traits>& rhs);
     
    @@ -1248,9 +1186,7 @@ Effects: Returns lhs.compare(rhs) != 0.

    -

    -

    -
    template <class charT, class traits>
    +
    template <class charT, class traits>
     bool operator < (const basic_regex<charT, traits>& lhs,
                    const basic_regex<charT, traits>& rhs);
     
    @@ -1258,9 +1194,7 @@ Effects: Returns lhs.compare(rhs) < 0.

    -

    -

    -
    template <class charT, class traits>
    +
    template <class charT, class traits>
     bool operator <= (const basic_regex<charT, traits>& lhs,
                       const basic_regex<charT, traits>& rhs);
     
    @@ -1268,9 +1202,7 @@ Effects: Returns lhs.compare(rhs) <= 0.

    -

    -

    -
    template <class charT, class traits>
    +
    template <class charT, class traits>
     bool operator >= (const basic_regex<charT, traits>& lhs,
                       const basic_regex<charT, traits>& rhs);
     
    @@ -1278,9 +1210,7 @@ Effects: Returns lhs.compare(rhs) >= 0.

    -

    -

    -
    template <class charT, class traits>
    +
    template <class charT, class traits>
     bool operator > (const basic_regex<charT, traits>& lhs,
                    const basic_regex<charT, traits>& rhs);
     
    @@ -1298,9 +1228,7 @@ outputs the textual representation of the expression to the stream.

    -

    -

    -
    template <class charT, class io_traits, class re_traits>
    +
    template <class charT, class io_traits, class re_traits>
     basic_ostream<charT, io_traits>&
        operator << (basic_ostream<charT, io_traits>& os
                    const basic_regex<charT, re_traits>& e);
    @@ -1308,9 +1236,7 @@
     

    Effects: Returns (os << e.str()).

    -

    -

    -
    template <class charT, class traits>
    +
    template <class charT, class traits>
     void swap(basic_regex<charT, traits>& lhs,
              basic_regex<charT, traits>& rhs);
     
    diff --git a/doc/html/boost_regex/ref/concepts.html b/doc/html/boost_regex/ref/concepts.html index 26bdbaf0..1c984f05 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -24,13 +24,13 @@ diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index 18dd19cd..83f77157 100644 --- a/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -24,7 +24,7 @@

    Type charT used a template diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index 47efedd2..3d12a241 100644 --- a/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 213fd1dc..8596e219 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -24,7 +24,7 @@

    @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -105,8 +105,6 @@

    -

    -

    @@ -127,8 +125,6 @@

    -

    -

    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces.html b/doc/html/boost_regex/ref/deprecated_interfaces.html index d04e53b8..2ffecf43 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces.html @@ -27,13 +27,13 @@ Deprecated Interfaces diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html index 6689f7dd..84c4677e 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index b578fa82..97be17f9 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -24,8 +24,8 @@

    The algorithm regex_format @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html index 713e70db..a6ede4d4 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html @@ -24,8 +24,8 @@

    The algorithm regex_grep diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html index aea2eaf3..48889dae 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html @@ -24,8 +24,8 @@

    The algorithm regex_split has been deprecated diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 505e2b8f..d15f962d 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -24,10 +24,10 @@

    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 82fc95c5..dc312b3a 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -24,7 +24,7 @@

    The type match_flag_type @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 04928d6b..1eeac81c 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -24,10 +24,10 @@

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    @@ -175,9 +175,7 @@ a copy of the Allocator argument is used for any memory allocation performed by the constructor or member functions during the lifetime of the object.

    -

    -

    -
    match_results(const Allocator& a = Allocator());
    +
    match_results(const Allocator& a = Allocator());
     

    Effects: Constructs an object of class @@ -240,17 +238,13 @@

    -

    -

    -
    match_results(const match_results& m);
    +
    match_results(const match_results& m);
     

    Effects: Constructs an object of class match_results, as a copy of m.

    -

    -

    -
    match_results& operator=(const match_results& m);
    +
    match_results& operator=(const match_results& m);
     

    Effects: Assigns m to *this. The postconditions @@ -372,34 +366,26 @@

    -

    -

    -
    size_type size()const;
    +
    size_type size()const;
     

    Effects: Returns the number of sub_match elements stored in *this; that is the number of marked sub-expressions in the regular expression that was matched plus one.

    -

    -

    -
    size_type max_size()const;
    +
    size_type max_size()const;
     

    Effects: Returns the maximum number of sub_match elements that can be stored in *this.

    -

    -

    -
    bool empty()const;
    +
    bool empty()const;
     

    Effects: Returns size() == 0.

    -

    -

    -
    difference_type length(int sub = 0)const;
    +
    difference_type length(int sub = 0)const;
     difference_type length(const char_type* sub)const;
     template <class charT>
     difference_type length(const charT* sub)const;
    @@ -432,9 +418,7 @@
             as an argument, even when the underlying character type of the expression
             being matched may be something more exotic such as a Unicode character type.
           

    -

    -

    -
    difference_type position(unsigned int sub = 0)const;
    +
    difference_type position(unsigned int sub = 0)const;
     difference_type position(const char_type* sub)const;
     template <class charT>
     difference_type position(const charT* sub)const;
    @@ -470,9 +454,7 @@
             as an argument, even when the underlying character type of the expression
             being matched may be something more exotic such as a Unicode character type.
           

    -

    -

    -
    string_type str(int sub = 0)const;
    +
    string_type str(int sub = 0)const;
     string_type str(const char_type* sub)const;
     template <class Traits, class A>
     string_type str(const std::basic_string<char_type, Traits, A>& sub)const;
    @@ -508,9 +490,7 @@
             as an argument, even when the underlying character type of the expression
             being matched may be something more exotic such as a Unicode character type.
           

    -

    -

    -
    const_reference operator[](int n) const;
    +
    const_reference operator[](int n) const;
     const_reference operator[](const char_type* n) const;
     template <class Traits, class A>
     const_reference operator[](const std::basic_string<char_type, Traits, A>& n) const;
    @@ -553,9 +533,7 @@
             as an argument, even when the underlying character type of the expression
             being matched may be something more exotic such as a Unicode character type.
           

    -

    -

    -
    const_reference prefix()const;
    +
    const_reference prefix()const;
     

    Requires: that the match_results object @@ -570,9 +548,7 @@ object representing the character sequence from the start of the string being matched or searched, to the start of the match found.

    -

    -

    -
    const_reference suffix()const;
    +
    const_reference suffix()const;
     

    Requires: that the match_results object @@ -587,25 +563,19 @@ object representing the character sequence from the end of the match found to the end of the string being matched or searched.

    -

    -

    -
    const_iterator begin()const;
    +
    const_iterator begin()const;
     

    Effects: Returns a starting iterator that enumerates over all the marked sub-expression matches stored in *this.

    -

    -

    -
    const_iterator end()const;
    +
    const_iterator end()const;
     

    Effects: Returns a terminating iterator that enumerates over all the marked sub-expression matches stored in *this.

    -

    -

    -
    template <class OutputIterator, class Formatter>
    +
    template <class OutputIterator, class Formatter>
     OutputIterator format(OutputIterator out,
                           Formatter fmt,
                           match_flag_type flags = format_default);
    @@ -678,9 +648,7 @@
     

    Returns: out.

    -

    -

    -
    template <class Formatter>
    +
    template <class Formatter>
     string_type format(Formatter fmt,
                        match_flag_type flags = format_default);
     
    @@ -743,17 +711,13 @@

    See the format syntax guide for more information.

    -

    -

    -
    allocator_type get_allocator()const;
    +
    allocator_type get_allocator()const;
     

    Effects: Returns a copy of the Allocator that was passed to the object's constructor.

    -

    -

    -
    void swap(match_results& that);
    +
    void swap(match_results& that);
     

    Effects: Swaps the contents of the two sequences. @@ -766,9 +730,7 @@

    Complexity: constant time.

    -

    -

    -
    typedef typename value_type::capture_sequence_type capture_sequence_type;
    +
    typedef typename value_type::capture_sequence_type capture_sequence_type;
     

    Defines an implementation-specific type that satisfies the requirements of @@ -776,9 +738,7 @@ whose value_type is a sub_match<BidirectionalIterator>. This type happens to be std::vector<sub_match<BidirectionalIterator> >, but you shouldn't actually rely on that.

    -

    -

    -
    const capture_sequence_type& captures(std::size_t i)const; 
    +
    const capture_sequence_type& captures(std::size_t i)const; 
     

    Requires: that the match_results object @@ -821,9 +781,7 @@ to take place. -

    -

    -
    template <class BidirectionalIterator, class Allocator>
    +
    template <class BidirectionalIterator, class Allocator>
     bool operator == (const match_results<BidirectionalIterator, Allocator>& m1,
                       const match_results<BidirectionalIterator, Allocator>& m2);
     
    @@ -831,9 +789,7 @@ Effects: Compares the two sequences for equality.

    -

    -

    -
    template <class BidirectionalIterator, class Allocator>
    +
    template <class BidirectionalIterator, class Allocator>
     bool operator != (const match_results<BidirectionalIterator, Allocator>& m1,
                       const match_results<BidirectionalIterator, Allocator>& m2);
     
    @@ -841,9 +797,7 @@ Effects: Compares the two sequences for inequality.

    -

    -

    -
    template <class charT, class traits, class BidirectionalIterator, class Allocator>
    +
    template <class charT, class traits, class BidirectionalIterator, class Allocator>
     basic_ostream<charT, traits>&
        operator << (basic_ostream<charT, traits>& os,
                    const match_results<BidirectionalIterator, Allocator>& m);
    @@ -854,9 +808,7 @@
             << m.str();
             Returns os.
           

    -

    -

    -
    template <class BidirectionalIterator, class Allocator>
    +
    template <class BidirectionalIterator, class Allocator>
     void swap(match_results<BidirectionalIterator, Allocator>& m1,
              match_results<BidirectionalIterator, Allocator>& m2);
     
    diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index 3075e27f..a3b5c261 100644 --- a/doc/html/boost_regex/ref/non_std_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings.html @@ -24,35 +24,35 @@ diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/intro.html b/doc/html/boost_regex/ref/non_std_strings/icu/intro.html index 488dba74..121d9194 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/intro.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/intro.html @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index b2b9c453..9af309c9 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -24,8 +24,8 @@

    The regular expression algorithms regex_match, regex_search and regex_replace all expect that @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index f911ad4c..14acb365 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -24,11 +24,11 @@

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html index a8786fd7..db04a0cc 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html @@ -24,8 +24,8 @@

    Header <boost/regex/icu.hpp> provides a regular expression traits diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html index d1d30b62..f9d304cf 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html @@ -24,20 +24,20 @@

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 0123716c..11a031be 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -24,8 +24,8 @@

    For each regular expression algorithm that's overloaded for a std::basic_string argument, there is also @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html index 29d096b4..cb763cca 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html @@ -24,8 +24,8 @@

    The header <boost/regex/mfc.hpp> provides Boost.Regex support for diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index f14891c2..84fd643c 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -24,15 +24,15 @@

    The following helper functions are provided to ease the conversion from an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html index 84a47687..5fdedc15 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html @@ -24,8 +24,8 @@

    The following helper function is available to assist in the creation diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html index 5f0bb14c..4df24625 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html @@ -24,8 +24,8 @@

    The following typedefs are provided for the convenience of those working diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 9294868d..a7e0c22a 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -24,7 +24,7 @@

    @@ -162,10 +162,8 @@ upon the macro UNICODE.

    -

    -

    -
    - +
    + regcomp

    @@ -376,10 +374,8 @@

    -

    -

    -
    - +
    + regerror

    @@ -464,10 +460,8 @@ equal to buf_size then regerror will have to be called again with a larger buffer.

    -

    -

    -
    - +
    + regexec

    @@ -534,10 +528,8 @@

    -

    -

    -
    - +
    + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index ca3a0a05..f6fab86c 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -24,7 +24,7 @@

    The iterator type regex_iterator will enumerate all @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -86,17 +86,13 @@ is constructed from a pair of iterators, and enumerates all occurrences of a regular expression within that iterator range.

    -

    -

    -
    regex_iterator();
    +
    regex_iterator();
     

    Effects: constructs an end of sequence regex_iterator.

    -

    -

    -
    regex_iterator(BidirectionalIterator a, BidirectionalIterator b, 
    +
    regex_iterator(BidirectionalIterator a, BidirectionalIterator b, 
                    const regex_type& re, 
                    match_flag_type m = match_default);
     
    @@ -114,9 +110,7 @@ matcher exhausts its permitted memory allocation (if Boost.Regex is configured in non-recursive mode).

    -

    -

    -
    regex_iterator(const regex_iterator& that);
    +
    regex_iterator(const regex_iterator& that);
     

    Effects: constructs a copy of that. @@ -124,9 +118,7 @@

    Postconditions: *this == that.

    -

    -

    -
    regex_iterator& operator=(const regex_iterator&);
    +
    regex_iterator& operator=(const regex_iterator&);
     

    Effects: sets *this equal to those in that. @@ -134,24 +126,18 @@

    Postconditions: *this == that.

    -

    -

    -
    bool operator==(const regex_iterator& that)const;
    +
    bool operator==(const regex_iterator& that)const;
     

    Effects: returns true if *this is equal to that.

    -

    -

    -
    bool operator!=(const regex_iterator&)const;
    +
    bool operator!=(const regex_iterator&)const;
     

    Effects: returns !(*this == that).

    -

    -

    -
    const value_type& operator*()const;
    +
    const value_type& operator*()const;
     

    Effects: dereferencing a regex_iterator object it yields @@ -374,16 +360,12 @@

    -

    -

    -
    const value_type* operator->()const;
    +
    const value_type* operator->()const;
     

    Effects: returns &(*this).

    -

    -

    -
    regex_iterator& operator++();
    +
    regex_iterator& operator++();
     

    Effects: moves the iterator to the next @@ -406,9 +388,7 @@

    Returns: *this.

    -

    -

    -
    regex_iterator operator++(int);
    +
    regex_iterator operator++(int);
     

    Effects: constructs a copy result of *this, then @@ -417,9 +397,7 @@

    Returns: result.

    -

    -

    -
    template <class charT, class traits> 
    +
    template <class charT, class traits> 
     regex_iterator<const charT*, charT, traits>
        make_regex_iterator(const charT* p, const basic_regex<charT, traits>& e, 
                          regex_constants::match_flag_type m = regex_constants::match_default); 
    @@ -437,7 +415,7 @@
             m.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index c97ab0e3..bdd5d505 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -24,7 +24,7 @@

    #include <boost/regex.hpp> 
     
    @@ -80,7 +80,7 @@ match_flag_type flags = match_default);
    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -361,7 +361,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 7e564a8a..8df0fae8 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -24,7 +24,7 @@

    #include <boost/regex.hpp> 
     
    @@ -53,7 +53,7 @@ match_flag_type flags = match_default);
    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -199,7 +199,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 89010e94..a3b6db4b 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -24,7 +24,7 @@

    #include <boost/regex.hpp> 
     
    @@ -73,7 +73,7 @@ match_flag_type flags = match_default);
    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -357,7 +357,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index d55be4a8..b6adc6ba 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -24,7 +24,7 @@

    The template class regex_token_iterator is an iterator @@ -136,19 +136,15 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description
    -

    -

    -
    regex_token_iterator();
    +
    regex_token_iterator();
     

    Effects: constructs an end of sequence iterator.

    -

    -

    -
    regex_token_iterator(BidirectionalIterator a, 
    +
    regex_token_iterator(BidirectionalIterator a, 
                          BidirectionalIterator b, 
                          const regex_type& re, 
                          int submatch = 0, 
    @@ -176,9 +172,7 @@
             matcher exhausts its permitted memory allocation (if Boost.Regex is configured
             in non-recursive mode).
           

    -

    -

    -
    regex_token_iterator(BidirectionalIterator a, 
    +
    regex_token_iterator(BidirectionalIterator a, 
                          BidirectionalIterator b, 
                          const regex_type& re, 
                          const std::vector<int>& submatches, 
    @@ -210,9 +204,7 @@
             matcher exhausts its permitted memory allocation (if Boost.Regex is configured
             in non-recursive mode).
           

    -

    -

    -
    template <std::size_t N>
    +
    template <std::size_t N>
     regex_token_iterator(BidirectionalIterator a, 
                          BidirectionalIterator b, 
                          const regex_type& re, 
    @@ -243,9 +235,7 @@
             matcher exhausts its permitted memory allocation (if Boost.Regex is configured
             in non-recursive mode).
           

    -

    -

    -
    regex_token_iterator(const regex_token_iterator& that);
    +
    regex_token_iterator(const regex_token_iterator& that);
     

    Effects: constructs a copy of that. @@ -253,9 +243,7 @@

    Postconditions: *this == that.

    -

    -

    -
    regex_token_iterator& operator=(const regex_token_iterator& that);
    +
    regex_token_iterator& operator=(const regex_token_iterator& that);
     

    Effects: sets *this to be equal to that. @@ -263,38 +251,28 @@

    Postconditions: *this == that.

    -

    -

    -
    bool operator==(const regex_token_iterator&)const;
    +
    bool operator==(const regex_token_iterator&)const;
     

    Effects: returns true if *this is the same position as that.

    -

    -

    -
    bool operator!=(const regex_token_iterator&)const;
    +
    bool operator!=(const regex_token_iterator&)const;
     

    Effects: returns !(*this == that).

    -

    -

    -
    const value_type& operator*()const;
    +
    const value_type& operator*()const;
     

    Effects: returns the current character sequence being enumerated.

    -

    -

    -
    const value_type* operator->()const;
    +
    const value_type* operator->()const;
     

    Effects: returns &(*this).

    -

    -

    -
    regex_token_iterator& operator++();
    +
    regex_token_iterator& operator++();
     

    Effects: Moves on to the next character @@ -311,9 +289,7 @@

    Returns: *this.

    -

    -

    -
    regex_token_iterator& operator++(int);
    +
    regex_token_iterator& operator++(int);
     

    Effects: constructs a copy result of *this, then @@ -322,9 +298,7 @@

    Returns: result.

    -

    -

    -
    template <class charT, class traits>
    +
    template <class charT, class traits>
     regex_token_iterator<const charT*, charT, traits> 
        make_regex_token_iterator(
              const charT* p, 
    @@ -383,7 +357,7 @@
             m.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 1c464aa9..36ebcebb 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -24,7 +24,7 @@

    namespace boost{
     
    @@ -46,7 +46,7 @@
     } // namespace boost
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 10c59c7d..e8ed8911 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -24,7 +24,7 @@

    #include <boost/regex.hpp>
     
    @@ -329,74 +329,56 @@ } // namespace boost
    - + Description
    - + Members
    -

    -

    -
    typedef typename std::iterator_traits<iterator>::value_type value_type;
    +
    typedef typename std::iterator_traits<iterator>::value_type value_type;
     

    The type pointed to by the iterators.

    -

    -

    -
    typedef typename std::iterator_traits<iterator>::difference_type difference_type;
    +
    typedef typename std::iterator_traits<iterator>::difference_type difference_type;
     

    A type that represents the difference between two iterators.

    -

    -

    -
    typedef BidirectionalIterator iterator;
    +
    typedef BidirectionalIterator iterator;
     

    The iterator type.

    -

    -

    -
    iterator first
    +
    iterator first
     

    An iterator denoting the position of the start of the match.

    -

    -

    -
    iterator second
    +
    iterator second
     

    An iterator denoting the position of the end of the match.

    -

    -

    -
    bool matched
    +
    bool matched
     

    A Boolean value denoting whether this sub-expression participated in the match.

    -

    -

    -
    static difference_type length();
    +
    static difference_type length();
     

    Effects: returns the length of this matched sub-expression, or 0 if this sub-expression was not matched: matched ? distance(first, second) : 0).

    -

    -

    -
    operator basic_string<value_type>()const;
    +
    operator basic_string<value_type>()const;
     

    Effects: converts *this into a string: returns (matched ? basic_string<value_type>(first, second) : basic_string<value_type>()).

    -

    -

    -
    basic_string<value_type> str()const;
    +
    basic_string<value_type> str()const;
     

    Effects: returns a string representation @@ -404,33 +386,25 @@ (matched ? basic_string<value_type>(first, second) : basic_string<value_type>()).

    -

    -

    -
    int compare(const sub_match& s)const;
    +
    int compare(const sub_match& s)const;
     

    Effects: performs a lexical comparison to s: returns str().compare(s.str()).

    -

    -

    -
    int compare(const basic_string<value_type>& s)const;
    +
    int compare(const basic_string<value_type>& s)const;
     

    Effects: compares *this to the string s: returns str().compare(s).

    -

    -

    -
    int compare(const value_type* s)const;
    +
    int compare(const value_type* s)const;
     

    Effects: compares *this to the null-terminated string s: returns str().compare(s).

    -

    -

    -
    typedef implementation-private capture_sequence_type;
    +
    typedef implementation-private capture_sequence_type;
     

    Defines an implementation-specific type that satisfies the requirements of @@ -438,9 +412,7 @@ whose value_type is a sub_match<BidirectionalIterator>. This type happens to be std::vector<sub_match<BidirectionalIterator> >, but you shouldn't actually rely on that.

    -

    -

    -
    const capture_sequence_type& captures()const; 
    +
    const capture_sequence_type& captures()const; 
     

    Effects: returns a sequence containing all @@ -474,13 +446,11 @@

    - + sub_match non-member operators
    -

    -

    -
    template <class BidirectionalIterator>
    +
    template <class BidirectionalIterator>
     bool operator == (const sub_match<BidirectionalIterator>& lhs,
                       const sub_match<BidirectionalIterator>& rhs);
     
    @@ -488,9 +458,7 @@ Effects: returns lhs.compare(rhs) == 0.

    -

    -

    -
    template <class BidirectionalIterator>
    +
    template <class BidirectionalIterator>
     bool operator != (const sub_match<BidirectionalIterator>& lhs,
                       const sub_match<BidirectionalIterator>& rhs);
     
    @@ -498,9 +466,7 @@ Effects: returns lhs.compare(rhs) != 0.

    -

    -

    -
    template <class BidirectionalIterator>
    +
    template <class BidirectionalIterator>
     bool operator < (const sub_match<BidirectionalIterator>& lhs,
                    const sub_match<BidirectionalIterator>& rhs);
     
    @@ -508,9 +474,7 @@ Effects: returns lhs.compare(rhs) < 0.

    -

    -

    -
    template <class BidirectionalIterator>
    +
    template <class BidirectionalIterator>
     bool operator <= (const sub_match<BidirectionalIterator>& lhs,
                       const sub_match<BidirectionalIterator>& rhs);
     
    @@ -518,9 +482,7 @@ Effects: returns lhs.compare(rhs) <= 0.

    -

    -

    -
    template <class BidirectionalIterator>
    +
    template <class BidirectionalIterator>
     bool operator >= (const sub_match<BidirectionalIterator>& lhs,
                       const sub_match<BidirectionalIterator>& rhs);
     
    @@ -528,9 +490,7 @@ Effects: returns lhs.compare(rhs) >= 0.

    -

    -

    -
    template <class BidirectionalIterator>
    +
    template <class BidirectionalIterator>
     bool operator > (const sub_match<BidirectionalIterator>& lhs,
                    const sub_match<BidirectionalIterator>& rhs);
     
    @@ -538,9 +498,7 @@ Effects: returns lhs.compare(rhs) > 0.

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator == (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                               traits,
                                                               Allocator>& lhs, 
    @@ -550,9 +508,7 @@
             Effects: returns lhs
             == rhs.str().
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator != (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                               traits, 
                                                               Allocator>& lhs,
    @@ -562,9 +518,7 @@
             Effects: returns lhs
             != rhs.str().
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator < (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                              traits, 
                                              Allocator>& lhs,
    @@ -574,9 +528,7 @@
             Effects: returns lhs
             < rhs.str().
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator > (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                                              traits, 
                                                              Allocator>& lhs,
    @@ -586,9 +538,7 @@
             Effects: returns lhs
             > rhs.str().
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator >= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                               traits, 
                                               Allocator>& lhs,
    @@ -598,9 +548,7 @@
             Effects: returns lhs
             >= rhs.str().
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator <= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                               traits, 
                                               Allocator>& lhs,
    @@ -610,9 +558,7 @@
             Effects: returns lhs
             <= rhs.str().
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator == (const sub_match<BidirectionalIterator>& lhs,
                       const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                               traits, 
    @@ -622,9 +568,7 @@
             Effects: returns lhs.str()
             == rhs.
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator != (const sub_match<BidirectionalIterator>& lhs,
                       const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                               traits, 
    @@ -634,9 +578,7 @@
             Effects: returns lhs.str()
             != rhs.
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator < (const sub_match<BidirectionalIterator>& lhs,
                    const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                            traits, 
    @@ -646,9 +588,7 @@
             Effects: returns lhs.str()
             < rhs.
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator > (const sub_match<BidirectionalIterator>& lhs,
                      const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                              traits, 
    @@ -658,9 +598,7 @@
             Effects: returns lhs.str()
             > rhs.
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator >= (const sub_match<BidirectionalIterator>& lhs,
                       const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                               traits, 
    @@ -670,9 +608,7 @@
             Effects: returns lhs.str()
             >= rhs.
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     bool operator <= (const sub_match<BidirectionalIterator>& lhs,
                       const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, 
                                               traits, 
    @@ -682,9 +618,7 @@
             Effects: returns lhs.str()
             <= rhs.
           

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                       const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -692,9 +626,7 @@ Effects: returns lhs == rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                       const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -702,9 +634,7 @@ Effects: returns lhs != rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                    const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -712,9 +642,7 @@ Effects: returns lhs < rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                    const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -722,9 +650,7 @@ Effects: returns lhs > rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                       const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -732,9 +658,7 @@ Effects: returns lhs >= rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, 
                       const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -742,9 +666,7 @@ Effects: returns lhs <= rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator == (const sub_match<BidirectionalIterator>& lhs, 
                       typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
     
    @@ -752,9 +674,7 @@ Effects: returns lhs.str() == rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator != (const sub_match<BidirectionalIterator>& lhs, 
                       typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
     
    @@ -762,9 +682,7 @@ Effects: returns lhs.str() != rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator < (const sub_match<BidirectionalIterator>& lhs, 
                    typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
     
    @@ -772,9 +690,7 @@ Effects: returns lhs.str() < rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator > (const sub_match<BidirectionalIterator>& lhs, 
                    typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
     
    @@ -782,9 +698,7 @@ Effects: returns lhs.str() > rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator >= (const sub_match<BidirectionalIterator>& lhs, 
                       typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
     
    @@ -792,9 +706,7 @@ Effects: returns lhs.str() >= rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator <= (const sub_match<BidirectionalIterator>& lhs, 
                       typename iterator_traits<BidirectionalIterator>::value_type const* rhs); 
     
    @@ -802,9 +714,7 @@ Effects: returns lhs.str() <= rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                       const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -812,9 +722,7 @@ Effects: returns lhs == rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                       const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -822,9 +730,7 @@ Effects: returns lhs != rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                    const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -832,9 +738,7 @@ Effects: returns lhs < rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                    const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -842,9 +746,7 @@ Effects: returns lhs > rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                       const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -852,9 +754,7 @@ Effects: returns lhs >= rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, 
                       const sub_match<BidirectionalIterator>& rhs); 
     
    @@ -862,9 +762,7 @@ Effects: returns lhs <= rhs.str().

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator == (const sub_match<BidirectionalIterator>& lhs, 
                       typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
     
    @@ -872,9 +770,7 @@ Effects: returns lhs.str() == rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator != (const sub_match<BidirectionalIterator>& lhs, 
                       typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
     
    @@ -882,9 +778,7 @@ Effects: returns lhs.str() != rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator < (const sub_match<BidirectionalIterator>& lhs, 
                    typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
     
    @@ -892,9 +786,7 @@ Effects: returns lhs.str() < rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator > (const sub_match<BidirectionalIterator>& lhs, 
                    typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
     
    @@ -902,9 +794,7 @@ Effects: returns lhs.str() > rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator >= (const sub_match<BidirectionalIterator>& lhs, 
                       typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
     
    @@ -912,9 +802,7 @@ Effects: returns lhs.str() >= rhs.

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     bool operator <= (const sub_match<BidirectionalIterator>& lhs, 
                       typename iterator_traits<BidirectionalIterator>::value_type const& rhs); 
     
    @@ -927,9 +815,7 @@ to any type to which you can add a std::string and obtain a new string as the result.

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator> 
        operator + (const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, 
                                            traits, 
    @@ -940,9 +826,7 @@
             Effects: returns s
             + m.str().
           

    -

    -

    -
    template <class BidirectionalIterator, class traits, class Allocator> 
    +
    template <class BidirectionalIterator, class traits, class Allocator> 
     std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>
        operator + (const sub_match<BidirectionalIterator>& m, 
                    const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, 
    @@ -953,9 +837,7 @@
             Effects: returns m.str()
             + s.
           

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
        operator + (typename iterator_traits<BidirectionalIterator>::value_type const* s, 
                    const sub_match<BidirectionalIterator>& m); 
    @@ -964,9 +846,7 @@
             Effects: returns s
             + m.str().
           

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
        operator + (const sub_match<BidirectionalIterator>& m, 
                    typename iterator_traits<BidirectionalIterator>::value_type const * s);
    @@ -975,9 +855,7 @@
             Effects: returns m.str()
             + s.
           

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
        operator + (typename iterator_traits<BidirectionalIterator>::value_type const& s, 
                    const sub_match<BidirectionalIterator>& m); 
    @@ -986,9 +864,7 @@
             Effects: returns s
             + m.str().
           

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
        operator + (const sub_match<BidirectionalIterator>& m, 
                    typename iterator_traits<BidirectionalIterator>::value_type const& s); 
    @@ -997,9 +873,7 @@
             Effects: returns m.str()
             + s.
           

    -

    -

    -
    template <class BidirectionalIterator> 
    +
    template <class BidirectionalIterator> 
     std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> 
        operator + (const sub_match<BidirectionalIterator>& m1,
                    const sub_match<BidirectionalIterator>& m2);
    @@ -1009,12 +883,10 @@
             + m2.str().
           

    - + Stream inserter
    -

    -

    -
    template <class charT, class traits, class BidirectionalIterator>
    +
    template <class charT, class traits, class BidirectionalIterator>
     basic_ostream<charT, traits>&
        operator << (basic_ostream<charT, traits>& os
                    const sub_match<BidirectionalIterator>& m);
    diff --git a/doc/html/boost_regex/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html
    index 9510fb20..b4811c1c 100644
    --- a/doc/html/boost_regex/ref/syntax_option_type.html
    +++ b/doc/html/boost_regex/ref/syntax_option_type.html
    @@ -24,21 +24,21 @@
     
     
     
    diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html
    index b9ce47fd..9edeb947 100644
    --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html
    +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html
    @@ -24,8 +24,8 @@
     

    Exactly one of the following must always be set for POSIX basic regular diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html index e35558da..d4243ac9 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html @@ -24,8 +24,8 @@

    The following must always be set to interpret the expression as a string diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html index 415a7bbb..7cff7d25 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html @@ -24,8 +24,8 @@

    The type syntax_option_type is an implementation diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html index 03b2d81a..15339f7f 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html @@ -24,8 +24,8 @@

    One of the following must always be set for perl regular expressions: diff --git a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html index 69da79c1..2d6a49da 100644 --- a/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html +++ b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html @@ -24,8 +24,8 @@

    Type syntax_option_type diff --git a/doc/html/boost_regex/syntax.html b/doc/html/boost_regex/syntax.html index c0f91c70..131e31fd 100644 --- a/doc/html/boost_regex/syntax.html +++ b/doc/html/boost_regex/syntax.html @@ -24,32 +24,32 @@

    - + Synopsis

    @@ -43,10 +43,8 @@ // e2 a case insensitive POSIX-Extended expression: boost::regex e2(my_expression, boost::regex::extended|boost::regex::icase); -

    -

    -

    - +

    + POSIX Extended Syntax

    @@ -56,7 +54,7 @@

    .[{}()\*+?|^$
    - + Wildcard:

    @@ -74,7 +72,7 @@

    - + Anchors:

    @@ -86,7 +84,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -98,7 +96,7 @@ to by a back-reference.

    - + Repeats:

    @@ -184,7 +182,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -214,7 +212,7 @@ cab

    - + Alternation

    @@ -227,7 +225,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -240,7 +238,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -249,7 +247,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -265,7 +263,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -274,7 +272,7 @@ cab range a-c.

    - + Character classes:
    @@ -284,7 +282,7 @@ cab character class names.

    - + Collating Elements:
    @@ -312,7 +310,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -329,7 +327,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -337,7 +335,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -363,7 +361,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -552,7 +550,7 @@ cab

    - + "Single character" character classes:
    @@ -706,7 +704,7 @@ cab
    - + Character Properties
    @@ -813,7 +811,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -888,7 +886,7 @@ cab

    - + Buffer boundaries
    @@ -979,7 +977,7 @@ cab

    - + Continuation Escape
    @@ -991,7 +989,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1005,7 +1003,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1056,7 +1054,7 @@ cab
    - + Any other escape
    @@ -1065,7 +1063,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1102,7 +1100,7 @@ cab
    - + What Gets Matched
    @@ -1112,11 +1110,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1137,7 +1135,7 @@ cab used with the -E option.

    - + awk

    @@ -1151,7 +1149,7 @@ cab these by default anyway.

    - + Options

    @@ -1164,7 +1162,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index c9a465fc..9680dab0 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -24,11 +24,11 @@

    - + Synopsis

    @@ -42,10 +42,8 @@ // e2 a case insensitive POSIX-Basic expression: boost::regex e2(my_expression, boost::regex::basic|boost::regex::icase); -

    -

    -

    - +

    + POSIX Basic Syntax

    @@ -55,7 +53,7 @@

    .[\*^$
    - + Wildcard:

    @@ -73,7 +71,7 @@

    - + Anchors:

    @@ -85,7 +83,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -97,7 +95,7 @@ by a back-reference.

    - + Repeats:

    @@ -155,7 +153,7 @@ aaaa to.

    - + Back references:

    @@ -173,7 +171,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -186,7 +184,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -195,7 +193,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -211,7 +209,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -220,7 +218,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -230,7 +228,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -259,7 +257,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -276,7 +274,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -284,7 +282,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -299,7 +297,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -309,13 +307,11 @@ aaaa rule.

    - + Variations

    -

    -

    -
    - +
    + Grep

    @@ -333,7 +329,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -613,7 +609,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -627,7 +623,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index 8ad7008e..dbb2444a 100644 --- a/doc/html/boost_regex/syntax/character_classes.html +++ b/doc/html/boost_regex/syntax/character_classes.html @@ -24,14 +24,14 @@

    diff --git a/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html b/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html index 770fab51..cc4988ea 100644 --- a/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html +++ b/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html @@ -24,8 +24,8 @@

    The following character classes are only supported by Unicode Regular Expressions: @@ -53,8 +53,6 @@

    -

    -

    @@ -64,8 +62,6 @@

    -

    -

    @@ -75,8 +71,6 @@

    -

    -

    diff --git a/doc/html/boost_regex/syntax/character_classes/std_char_clases.html b/doc/html/boost_regex/syntax/character_classes/std_char_clases.html index d53272ca..88821b72 100644 --- a/doc/html/boost_regex/syntax/character_classes/std_char_clases.html +++ b/doc/html/boost_regex/syntax/character_classes/std_char_clases.html @@ -24,8 +24,8 @@

    The following character class names are always supported by Boost.Regex: diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index 2c1b4786..a638aff1 100644 --- a/doc/html/boost_regex/syntax/collating_names.html +++ b/doc/html/boost_regex/syntax/collating_names.html @@ -24,14 +24,14 @@

    diff --git a/doc/html/boost_regex/syntax/collating_names/digraphs.html b/doc/html/boost_regex/syntax/collating_names/digraphs.html index 80593b58..c9308e31 100644 --- a/doc/html/boost_regex/syntax/collating_names/digraphs.html +++ b/doc/html/boost_regex/syntax/collating_names/digraphs.html @@ -24,7 +24,7 @@

    The following are treated as valid digraphs when used as a collating name: diff --git a/doc/html/boost_regex/syntax/collating_names/named_unicode.html b/doc/html/boost_regex/syntax/collating_names/named_unicode.html index 2754f5ca..08f647ae 100644 --- a/doc/html/boost_regex/syntax/collating_names/named_unicode.html +++ b/doc/html/boost_regex/syntax/collating_names/named_unicode.html @@ -24,8 +24,8 @@

    When using Unicode aware regular expressions diff --git a/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html b/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html index 22a5cd60..ad5df08d 100644 --- a/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html +++ b/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html @@ -24,8 +24,8 @@

    The following symbolic names are recognised as valid collating element diff --git a/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/doc/html/boost_regex/syntax/leftmost_longest_rule.html index 0ef4ef19..8ece7910 100644 --- a/doc/html/boost_regex/syntax/leftmost_longest_rule.html +++ b/doc/html/boost_regex/syntax/leftmost_longest_rule.html @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 8d8949ad..29c25b23 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -24,11 +24,11 @@

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{}()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Possessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1048,7 +1048,7 @@ (?=\n?\z).

    - + Continuation Escape
    @@ -1060,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1073,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1125,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1168,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1177,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1222,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1249,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1323,7 +1323,7 @@
    - + Operator precedence
    @@ -1358,7 +1358,7 @@

    - + What gets matched

    @@ -1534,7 +1534,7 @@

    - + Variations

    @@ -1543,7 +1543,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1555,7 +1555,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1567,7 +1567,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index c82a5558..97eef55f 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -24,13 +24,13 @@

    There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index 1931c786..63ade3fa 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -39,164 +39,163 @@

    Table of Contents

    -
    Configuration
    +
    Configuration
    -
    Compiler Setup
    -
    Locale and traits - class selection
    -
    Linkage Options
    -
    Algorithm Selection
    -
    Algorithm Tuning
    +
    Compiler Setup
    +
    Locale and traits class + selection
    +
    Linkage Options
    +
    Algorithm Selection
    +
    Algorithm Tuning
    -
    Building and Installing the Library
    +
    Building and Installing the Library
    Introduction and Overview
    -
    Unicode and Boost.Regex
    -
    Understanding Marked Sub-Expressions +
    Unicode and Boost.Regex
    +
    Understanding Marked Sub-Expressions and Captures
    -
    Partial Matches
    -
    Regular Expression Syntax
    +
    Partial Matches
    +
    Regular Expression Syntax
    -
    Perl Regular Expression +
    Perl Regular Expression Syntax
    -
    POSIX Extended Regular +
    POSIX Extended Regular Expression Syntax
    -
    POSIX Basic Regular +
    POSIX Basic Regular Expression Syntax
    -
    Character Class +
    Character Class Names
    -
    - Character Classes that are Always Supported
    -
    - Character classes that are supported by Unicode Regular Expressions
    +
    Character + Classes that are Always Supported
    +
    Character + classes that are supported by Unicode Regular Expressions
    -
    Collating Names
    +
    Collating Names
    -
    Digraphs
    -
    - POSIX Symbolic Names
    -
    - Named Unicode Characters
    +
    Digraphs
    +
    POSIX + Symbolic Names
    +
    Named + Unicode Characters
    -
    The Leftmost +
    The Leftmost Longest Rule
    -
    Search and Replace Format String Syntax
    +
    Search and Replace Format String Syntax
    -
    Sed Format String Syntax
    -
    Perl Format String Syntax
    -
    Boost-Extended +
    Sed Format String Syntax
    +
    Perl Format String Syntax
    +
    Boost-Extended Format String Syntax
    -
    Reference
    +
    Reference
    -
    basic_regex
    -
    match_results
    -
    sub_match
    -
    regex_match
    -
    regex_search
    -
    regex_replace
    -
    regex_iterator
    -
    regex_token_iterator
    -
    bad_expression
    -
    syntax_option_type
    +
    basic_regex
    +
    match_results
    +
    sub_match
    +
    regex_match
    +
    regex_search
    +
    regex_replace
    +
    regex_iterator
    +
    regex_token_iterator
    +
    bad_expression
    +
    syntax_option_type
    -
    - syntax_option_type Synopsis
    -
    - Overview of syntax_option_type
    -
    - Options for Perl Regular Expressions
    -
    - Options for POSIX Extended Regular Expressions
    -
    - Options for POSIX Basic Regular Expressions
    -
    - Options for Literal Strings
    +
    syntax_option_type + Synopsis
    +
    Overview + of syntax_option_type
    +
    Options + for Perl Regular Expressions
    +
    Options + for POSIX Extended Regular Expressions
    +
    Options + for POSIX Basic Regular Expressions
    +
    Options + for Literal Strings
    -
    match_flag_type
    -
    error_type
    -
    regex_traits
    -
    Interfacing With Non-Standard +
    match_flag_type
    +
    error_type
    +
    regex_traits
    +
    Interfacing With Non-Standard String Types
    -
    Working With - Unicode and ICU String Types
    +
    Working With Unicode + and ICU String Types
    -
    Introduction +
    Introduction to using Regex with ICU
    -
    - Unicode regular expression types
    -
    - Unicode Regular Expression Algorithms
    -
    - Unicode Aware Regex Iterators
    +
    Unicode + regular expression types
    +
    Unicode + Regular Expression Algorithms
    +
    Unicode + Aware Regex Iterators
    -
    Using +
    Using Boost Regex With MFC Strings
    -
    - Introduction to Boost.Regex and MFC Strings
    -
    - Regex Types Used With MFC Strings
    -
    - Regular Expression Creation From an MFC String
    -
    - Overloaded Algorithms For MFC String Types
    -
    - Iterating Over the Matches Within An MFC String
    +
    Introduction + to Boost.Regex and MFC Strings
    +
    Regex + Types Used With MFC Strings
    +
    Regular + Expression Creation From an MFC String
    +
    Overloaded + Algorithms For MFC String Types
    +
    Iterating + Over the Matches Within An MFC String
    -
    POSIX Compatible C API's
    -
    Concepts
    +
    POSIX Compatible C API's
    +
    Concepts
    -
    charT Requirements
    -
    Traits Class +
    charT Requirements
    +
    Traits Class Requirements
    -
    Iterator +
    Iterator Requirements
    Deprecated Interfaces
    -
    - regex_format (Deprecated)
    -
    - regex_grep (Deprecated)
    -
    - regex_split (deprecated)
    -
    High +
    regex_format + (Deprecated)
    +
    regex_grep + (Deprecated)
    +
    regex_split + (deprecated)
    +
    High Level Class RegEx (Deprecated)
    Background Information
    -
    Headers
    -
    Localization
    -
    Thread +
    Headers
    +
    Localization
    +
    Thread Safety
    -
    Test and +
    Test and Example Programs
    -
    References +
    References and Further Information
    -
    FAQ
    -
    Performance
    -
    Standards +
    FAQ
    +
    Performance
    +
    Standards Conformance
    -
    Redistributables
    -
    - Acknowledgements
    -
    History
    +
    Redistributables
    +
    Acknowledgements
    +
    History

    - A printer-friendly PDF + A printer-friendly PDF version of this manual is also available.

    - +

    Last revised: September 20, 2010 at 16:52:36 GMT

    Last revised: January 01, 2011 at 12:24:16 GMT


    diff --git a/doc/regex.qbk b/doc/regex.qbk index fdd0aea2..703e7d9d 100644 --- a/doc/regex.qbk +++ b/doc/regex.qbk @@ -44,7 +44,7 @@ [template regfree[] [link boost_regex.ref.posix.regfree `regfree`]] A printer-friendly -[@http://svn.boost.org/svn/boost/sandbox/pdf/regex/release/regex.pdf +[@http://sourceforge.net/projects/boost/files/boost-docs/ PDF version of this manual is also available]. [include configuration.qbk] From d6e72fc2b7bc10aeeab94df390071b51d77847df Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 6 Jan 2011 12:45:47 +0000 Subject: [PATCH 67/77] Update makefiles. [SVN r67717] --- build/bcb6.mak | 1124 ++++++++++++++++++++-------------------- build/gcc-shared.mak | 168 +++--- build/gcc.mak | 172 +++--- build/vc10.mak | 491 ++++++++++++++++++ build/vc6-stlport.mak | 554 ++++++++++---------- build/vc6.mak | 738 +++++++++++++------------- build/vc7-stlport.mak | 554 ++++++++++---------- build/vc7.mak | 738 +++++++++++++------------- build/vc71-stlport.mak | 554 ++++++++++---------- build/vc71.mak | 738 +++++++++++++------------- build/vc8.mak | 693 +++++++++++++++---------- build/vc9.mak | 693 ++++++++++--------------- build/vc_gen.sh | 42 +- 13 files changed, 3875 insertions(+), 3384 deletions(-) create mode 100644 build/vc10.mak diff --git a/build/bcb6.mak b/build/bcb6.mak index 39d9c588..a1d99a3c 100644 --- a/build/bcb6.mak +++ b/build/bcb6.mak @@ -41,31 +41,31 @@ BCROOT=$(MAKEDIR)\.. ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : bcb bcb\libboost_regex-bcb-s-1_45 bcb\libboost_regex-bcb-s-1_45.lib bcb\libboost_regex-bcb-mt-s-1_45 bcb\libboost_regex-bcb-mt-s-1_45.lib bcb\boost_regex-bcb-mt-1_45 bcb\boost_regex-bcb-mt-1_45.lib bcb\boost_regex-bcb-1_45 bcb\boost_regex-bcb-1_45.lib bcb\libboost_regex-bcb-mt-1_45 bcb\libboost_regex-bcb-mt-1_45.lib bcb\libboost_regex-bcb-1_45 bcb\libboost_regex-bcb-1_45.lib bcb\libboost_regex-bcb-sd-1_45 bcb\libboost_regex-bcb-sd-1_45.lib bcb\libboost_regex-bcb-mt-sd-1_45 bcb\libboost_regex-bcb-mt-sd-1_45.lib bcb\boost_regex-bcb-mt-d-1_45 bcb\boost_regex-bcb-mt-d-1_45.lib bcb\boost_regex-bcb-d-1_45 bcb\boost_regex-bcb-d-1_45.lib bcb\libboost_regex-bcb-mt-d-1_45 bcb\libboost_regex-bcb-mt-d-1_45.lib bcb\libboost_regex-bcb-d-1_45 bcb\libboost_regex-bcb-d-1_45.lib +all : bcb bcb\libboost_regex-bcb-s-1_46 bcb\libboost_regex-bcb-s-1_46.lib bcb\libboost_regex-bcb-mt-s-1_46 bcb\libboost_regex-bcb-mt-s-1_46.lib bcb\boost_regex-bcb-mt-1_46 bcb\boost_regex-bcb-mt-1_46.lib bcb\boost_regex-bcb-1_46 bcb\boost_regex-bcb-1_46.lib bcb\libboost_regex-bcb-mt-1_46 bcb\libboost_regex-bcb-mt-1_46.lib bcb\libboost_regex-bcb-1_46 bcb\libboost_regex-bcb-1_46.lib bcb\libboost_regex-bcb-sd-1_46 bcb\libboost_regex-bcb-sd-1_46.lib bcb\libboost_regex-bcb-mt-sd-1_46 bcb\libboost_regex-bcb-mt-sd-1_46.lib bcb\boost_regex-bcb-mt-d-1_46 bcb\boost_regex-bcb-mt-d-1_46.lib bcb\boost_regex-bcb-d-1_46 bcb\boost_regex-bcb-d-1_46.lib bcb\libboost_regex-bcb-mt-d-1_46 bcb\libboost_regex-bcb-mt-d-1_46.lib bcb\libboost_regex-bcb-d-1_46 bcb\libboost_regex-bcb-d-1_46.lib -clean : libboost_regex-bcb-s-1_45_clean libboost_regex-bcb-mt-s-1_45_clean boost_regex-bcb-mt-1_45_clean boost_regex-bcb-1_45_clean libboost_regex-bcb-mt-1_45_clean libboost_regex-bcb-1_45_clean libboost_regex-bcb-sd-1_45_clean libboost_regex-bcb-mt-sd-1_45_clean boost_regex-bcb-mt-d-1_45_clean boost_regex-bcb-d-1_45_clean libboost_regex-bcb-mt-d-1_45_clean libboost_regex-bcb-d-1_45_clean +clean : libboost_regex-bcb-s-1_46_clean libboost_regex-bcb-mt-s-1_46_clean boost_regex-bcb-mt-1_46_clean boost_regex-bcb-1_46_clean libboost_regex-bcb-mt-1_46_clean libboost_regex-bcb-1_46_clean libboost_regex-bcb-sd-1_46_clean libboost_regex-bcb-mt-sd-1_46_clean boost_regex-bcb-mt-d-1_46_clean boost_regex-bcb-d-1_46_clean libboost_regex-bcb-mt-d-1_46_clean libboost_regex-bcb-d-1_46_clean install : all - copy bcb\libboost_regex-bcb-s-1_45.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-s-1_45.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_45.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_45.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-1_45.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_45.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-1_45.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_45.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-1_45.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-1_45.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-sd-1_45.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-sd-1_45.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_45.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_45.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-d-1_45.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_45.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-d-1_45.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_45.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-d-1_45.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-d-1_45.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-s-1_46.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-s-1_46.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_46.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_46.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-1_46.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_46.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-1_46.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_46.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-1_46.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-1_46.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-sd-1_46.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-sd-1_46.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_46.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_46.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-d-1_46.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_46.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-d-1_46.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_46.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-d-1_46.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-d-1_46.lib $(BCROOT)\lib bcb : -@mkdir bcb @@ -73,1265 +73,1265 @@ bcb : ######################################################## # -# section for libboost_regex-bcb-s-1_45.lib +# section for libboost_regex-bcb-s-1_46.lib # ######################################################## -bcb\libboost_regex-bcb-s-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-s-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-s-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-s-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-s-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-s-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-s-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-s-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-s-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-s-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-s-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-s-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-s-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-s-1_45 : - -@mkdir bcb\libboost_regex-bcb-s-1_45 +bcb\libboost_regex-bcb-s-1_46 : + -@mkdir bcb\libboost_regex-bcb-s-1_46 -libboost_regex-bcb-s-1_45_clean : - del bcb\libboost_regex-bcb-s-1_45\*.obj - del bcb\libboost_regex-bcb-s-1_45\*.il? - del bcb\libboost_regex-bcb-s-1_45\*.csm - del bcb\libboost_regex-bcb-s-1_45\*.tds +libboost_regex-bcb-s-1_46_clean : + del bcb\libboost_regex-bcb-s-1_46\*.obj + del bcb\libboost_regex-bcb-s-1_46\*.il? + del bcb\libboost_regex-bcb-s-1_46\*.csm + del bcb\libboost_regex-bcb-s-1_46\*.tds -bcb\libboost_regex-bcb-s-1_45.lib : bcb\libboost_regex-bcb-s-1_45\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_45\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_45\cregex.obj bcb\libboost_regex-bcb-s-1_45\fileiter.obj bcb\libboost_regex-bcb-s-1_45\icu.obj bcb\libboost_regex-bcb-s-1_45\instances.obj bcb\libboost_regex-bcb-s-1_45\posix_api.obj bcb\libboost_regex-bcb-s-1_45\regex.obj bcb\libboost_regex-bcb-s-1_45\regex_debug.obj bcb\libboost_regex-bcb-s-1_45\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_45\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_45\static_mutex.obj bcb\libboost_regex-bcb-s-1_45\usinstances.obj bcb\libboost_regex-bcb-s-1_45\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_45\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_45\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_45\winstances.obj - if exist bcb\libboost_regex-bcb-s-1_45.lib del bcb\libboost_regex-bcb-s-1_45.lib +bcb\libboost_regex-bcb-s-1_46.lib : bcb\libboost_regex-bcb-s-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_46\cregex.obj bcb\libboost_regex-bcb-s-1_46\fileiter.obj bcb\libboost_regex-bcb-s-1_46\icu.obj bcb\libboost_regex-bcb-s-1_46\instances.obj bcb\libboost_regex-bcb-s-1_46\posix_api.obj bcb\libboost_regex-bcb-s-1_46\regex.obj bcb\libboost_regex-bcb-s-1_46\regex_debug.obj bcb\libboost_regex-bcb-s-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_46\static_mutex.obj bcb\libboost_regex-bcb-s-1_46\usinstances.obj bcb\libboost_regex-bcb-s-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_46\winstances.obj + if exist bcb\libboost_regex-bcb-s-1_46.lib del bcb\libboost_regex-bcb-s-1_46.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_45.lib" +"bcb\libboost_regex-bcb-s-1_45\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_45\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_45\cregex.obj" +"bcb\libboost_regex-bcb-s-1_45\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_45\icu.obj" +"bcb\libboost_regex-bcb-s-1_45\instances.obj" +"bcb\libboost_regex-bcb-s-1_45\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_45\regex.obj" +"bcb\libboost_regex-bcb-s-1_45\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_45\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_45\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_45\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_45\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_45\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_45\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_45\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_45\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_46.lib" +"bcb\libboost_regex-bcb-s-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_46\cregex.obj" +"bcb\libboost_regex-bcb-s-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_46\icu.obj" +"bcb\libboost_regex-bcb-s-1_46\instances.obj" +"bcb\libboost_regex-bcb-s-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_46\regex.obj" +"bcb\libboost_regex-bcb-s-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_46\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-s-1_45.lib +# section for libboost_regex-bcb-mt-s-1_46.lib # ######################################################## -bcb\libboost_regex-bcb-mt-s-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_45 : - -@mkdir bcb\libboost_regex-bcb-mt-s-1_45 +bcb\libboost_regex-bcb-mt-s-1_46 : + -@mkdir bcb\libboost_regex-bcb-mt-s-1_46 -libboost_regex-bcb-mt-s-1_45_clean : - del bcb\libboost_regex-bcb-mt-s-1_45\*.obj - del bcb\libboost_regex-bcb-mt-s-1_45\*.il? - del bcb\libboost_regex-bcb-mt-s-1_45\*.csm - del bcb\libboost_regex-bcb-mt-s-1_45\*.tds +libboost_regex-bcb-mt-s-1_46_clean : + del bcb\libboost_regex-bcb-mt-s-1_46\*.obj + del bcb\libboost_regex-bcb-mt-s-1_46\*.il? + del bcb\libboost_regex-bcb-mt-s-1_46\*.csm + del bcb\libboost_regex-bcb-mt-s-1_46\*.tds -bcb\libboost_regex-bcb-mt-s-1_45.lib : bcb\libboost_regex-bcb-mt-s-1_45\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_45\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_45\cregex.obj bcb\libboost_regex-bcb-mt-s-1_45\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_45\icu.obj bcb\libboost_regex-bcb-mt-s-1_45\instances.obj bcb\libboost_regex-bcb-mt-s-1_45\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_45\regex.obj bcb\libboost_regex-bcb-mt-s-1_45\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_45\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_45\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_45\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_45\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_45\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_45\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_45\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_45\winstances.obj - if exist bcb\libboost_regex-bcb-mt-s-1_45.lib del bcb\libboost_regex-bcb-mt-s-1_45.lib +bcb\libboost_regex-bcb-mt-s-1_46.lib : bcb\libboost_regex-bcb-mt-s-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_46\cregex.obj bcb\libboost_regex-bcb-mt-s-1_46\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_46\icu.obj bcb\libboost_regex-bcb-mt-s-1_46\instances.obj bcb\libboost_regex-bcb-mt-s-1_46\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_46\regex.obj bcb\libboost_regex-bcb-mt-s-1_46\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_46\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_46\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_46\winstances.obj + if exist bcb\libboost_regex-bcb-mt-s-1_46.lib del bcb\libboost_regex-bcb-mt-s-1_46.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_45.lib" +"bcb\libboost_regex-bcb-mt-s-1_45\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_45\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_46.lib" +"bcb\libboost_regex-bcb-mt-s-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-1_45.lib +# section for boost_regex-bcb-mt-1_46.lib # ######################################################## -bcb\boost_regex-bcb-mt-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-1_45 : - -@mkdir bcb\boost_regex-bcb-mt-1_45 +bcb\boost_regex-bcb-mt-1_46 : + -@mkdir bcb\boost_regex-bcb-mt-1_46 -boost_regex-bcb-mt-1_45_clean : - del bcb\boost_regex-bcb-mt-1_45\*.obj - del bcb\boost_regex-bcb-mt-1_45\*.il? - del bcb\boost_regex-bcb-mt-1_45\*.csm - del bcb\boost_regex-bcb-mt-1_45\*.tds +boost_regex-bcb-mt-1_46_clean : + del bcb\boost_regex-bcb-mt-1_46\*.obj + del bcb\boost_regex-bcb-mt-1_46\*.il? + del bcb\boost_regex-bcb-mt-1_46\*.csm + del bcb\boost_regex-bcb-mt-1_46\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-1_45.lib : bcb\boost_regex-bcb-mt-1_45\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_45\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_45\cregex.obj bcb\boost_regex-bcb-mt-1_45\fileiter.obj bcb\boost_regex-bcb-mt-1_45\icu.obj bcb\boost_regex-bcb-mt-1_45\instances.obj bcb\boost_regex-bcb-mt-1_45\posix_api.obj bcb\boost_regex-bcb-mt-1_45\regex.obj bcb\boost_regex-bcb-mt-1_45\regex_debug.obj bcb\boost_regex-bcb-mt-1_45\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_45\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_45\static_mutex.obj bcb\boost_regex-bcb-mt-1_45\usinstances.obj bcb\boost_regex-bcb-mt-1_45\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_45\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_45\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_45\winstances.obj +bcb\boost_regex-bcb-mt-1_46.lib : bcb\boost_regex-bcb-mt-1_46\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\cregex.obj bcb\boost_regex-bcb-mt-1_46\fileiter.obj bcb\boost_regex-bcb-mt-1_46\icu.obj bcb\boost_regex-bcb-mt-1_46\instances.obj bcb\boost_regex-bcb-mt-1_46\posix_api.obj bcb\boost_regex-bcb-mt-1_46\regex.obj bcb\boost_regex-bcb-mt-1_46\regex_debug.obj bcb\boost_regex-bcb-mt-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_46\static_mutex.obj bcb\boost_regex-bcb-mt-1_46\usinstances.obj bcb\boost_regex-bcb-mt-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_46\winstances.obj bcc32 @&&| --lw-dup -lw-dpl -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-mt-1_45.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_45\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_45\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_45\cregex.obj bcb\boost_regex-bcb-mt-1_45\fileiter.obj bcb\boost_regex-bcb-mt-1_45\icu.obj bcb\boost_regex-bcb-mt-1_45\instances.obj bcb\boost_regex-bcb-mt-1_45\posix_api.obj bcb\boost_regex-bcb-mt-1_45\regex.obj bcb\boost_regex-bcb-mt-1_45\regex_debug.obj bcb\boost_regex-bcb-mt-1_45\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_45\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_45\static_mutex.obj bcb\boost_regex-bcb-mt-1_45\usinstances.obj bcb\boost_regex-bcb-mt-1_45\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_45\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_45\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_45\winstances.obj $(LIBS) +-lw-dup -lw-dpl -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-mt-1_46.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_46\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\cregex.obj bcb\boost_regex-bcb-mt-1_46\fileiter.obj bcb\boost_regex-bcb-mt-1_46\icu.obj bcb\boost_regex-bcb-mt-1_46\instances.obj bcb\boost_regex-bcb-mt-1_46\posix_api.obj bcb\boost_regex-bcb-mt-1_46\regex.obj bcb\boost_regex-bcb-mt-1_46\regex_debug.obj bcb\boost_regex-bcb-mt-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_46\static_mutex.obj bcb\boost_regex-bcb-mt-1_46\usinstances.obj bcb\boost_regex-bcb-mt-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_46\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-1_45.lib bcb\boost_regex-bcb-mt-1_45.dll + implib -w bcb\boost_regex-bcb-mt-1_46.lib bcb\boost_regex-bcb-mt-1_46.dll ######################################################## # -# section for boost_regex-bcb-1_45.lib +# section for boost_regex-bcb-1_46.lib # ######################################################## -bcb\boost_regex-bcb-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-1_45 : - -@mkdir bcb\boost_regex-bcb-1_45 +bcb\boost_regex-bcb-1_46 : + -@mkdir bcb\boost_regex-bcb-1_46 -boost_regex-bcb-1_45_clean : - del bcb\boost_regex-bcb-1_45\*.obj - del bcb\boost_regex-bcb-1_45\*.il? - del bcb\boost_regex-bcb-1_45\*.csm - del bcb\boost_regex-bcb-1_45\*.tds +boost_regex-bcb-1_46_clean : + del bcb\boost_regex-bcb-1_46\*.obj + del bcb\boost_regex-bcb-1_46\*.il? + del bcb\boost_regex-bcb-1_46\*.csm + del bcb\boost_regex-bcb-1_46\*.tds del bcb\*.tds -bcb\boost_regex-bcb-1_45.lib : bcb\boost_regex-bcb-1_45\c_regex_traits.obj bcb\boost_regex-bcb-1_45\cpp_regex_traits.obj bcb\boost_regex-bcb-1_45\cregex.obj bcb\boost_regex-bcb-1_45\fileiter.obj bcb\boost_regex-bcb-1_45\icu.obj bcb\boost_regex-bcb-1_45\instances.obj bcb\boost_regex-bcb-1_45\posix_api.obj bcb\boost_regex-bcb-1_45\regex.obj bcb\boost_regex-bcb-1_45\regex_debug.obj bcb\boost_regex-bcb-1_45\regex_raw_buffer.obj bcb\boost_regex-bcb-1_45\regex_traits_defaults.obj bcb\boost_regex-bcb-1_45\static_mutex.obj bcb\boost_regex-bcb-1_45\usinstances.obj bcb\boost_regex-bcb-1_45\w32_regex_traits.obj bcb\boost_regex-bcb-1_45\wc_regex_traits.obj bcb\boost_regex-bcb-1_45\wide_posix_api.obj bcb\boost_regex-bcb-1_45\winstances.obj +bcb\boost_regex-bcb-1_46.lib : bcb\boost_regex-bcb-1_46\c_regex_traits.obj bcb\boost_regex-bcb-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-1_46\cregex.obj bcb\boost_regex-bcb-1_46\fileiter.obj bcb\boost_regex-bcb-1_46\icu.obj bcb\boost_regex-bcb-1_46\instances.obj bcb\boost_regex-bcb-1_46\posix_api.obj bcb\boost_regex-bcb-1_46\regex.obj bcb\boost_regex-bcb-1_46\regex_debug.obj bcb\boost_regex-bcb-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-1_46\static_mutex.obj bcb\boost_regex-bcb-1_46\usinstances.obj bcb\boost_regex-bcb-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-1_46\wide_posix_api.obj bcb\boost_regex-bcb-1_46\winstances.obj bcc32 @&&| --lw-dup -lw-dpl -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-1_45.dll $(XLFLAGS) bcb\boost_regex-bcb-1_45\c_regex_traits.obj bcb\boost_regex-bcb-1_45\cpp_regex_traits.obj bcb\boost_regex-bcb-1_45\cregex.obj bcb\boost_regex-bcb-1_45\fileiter.obj bcb\boost_regex-bcb-1_45\icu.obj bcb\boost_regex-bcb-1_45\instances.obj bcb\boost_regex-bcb-1_45\posix_api.obj bcb\boost_regex-bcb-1_45\regex.obj bcb\boost_regex-bcb-1_45\regex_debug.obj bcb\boost_regex-bcb-1_45\regex_raw_buffer.obj bcb\boost_regex-bcb-1_45\regex_traits_defaults.obj bcb\boost_regex-bcb-1_45\static_mutex.obj bcb\boost_regex-bcb-1_45\usinstances.obj bcb\boost_regex-bcb-1_45\w32_regex_traits.obj bcb\boost_regex-bcb-1_45\wc_regex_traits.obj bcb\boost_regex-bcb-1_45\wide_posix_api.obj bcb\boost_regex-bcb-1_45\winstances.obj $(LIBS) +-lw-dup -lw-dpl -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-1_46.dll $(XLFLAGS) bcb\boost_regex-bcb-1_46\c_regex_traits.obj bcb\boost_regex-bcb-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-1_46\cregex.obj bcb\boost_regex-bcb-1_46\fileiter.obj bcb\boost_regex-bcb-1_46\icu.obj bcb\boost_regex-bcb-1_46\instances.obj bcb\boost_regex-bcb-1_46\posix_api.obj bcb\boost_regex-bcb-1_46\regex.obj bcb\boost_regex-bcb-1_46\regex_debug.obj bcb\boost_regex-bcb-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-1_46\static_mutex.obj bcb\boost_regex-bcb-1_46\usinstances.obj bcb\boost_regex-bcb-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-1_46\wide_posix_api.obj bcb\boost_regex-bcb-1_46\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-1_45.lib bcb\boost_regex-bcb-1_45.dll + implib -w bcb\boost_regex-bcb-1_46.lib bcb\boost_regex-bcb-1_46.dll ######################################################## # -# section for libboost_regex-bcb-mt-1_45.lib +# section for libboost_regex-bcb-mt-1_46.lib # ######################################################## -bcb\libboost_regex-bcb-mt-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-1_45 : - -@mkdir bcb\libboost_regex-bcb-mt-1_45 +bcb\libboost_regex-bcb-mt-1_46 : + -@mkdir bcb\libboost_regex-bcb-mt-1_46 -libboost_regex-bcb-mt-1_45_clean : - del bcb\libboost_regex-bcb-mt-1_45\*.obj - del bcb\libboost_regex-bcb-mt-1_45\*.il? - del bcb\libboost_regex-bcb-mt-1_45\*.csm - del bcb\libboost_regex-bcb-mt-1_45\*.tds +libboost_regex-bcb-mt-1_46_clean : + del bcb\libboost_regex-bcb-mt-1_46\*.obj + del bcb\libboost_regex-bcb-mt-1_46\*.il? + del bcb\libboost_regex-bcb-mt-1_46\*.csm + del bcb\libboost_regex-bcb-mt-1_46\*.tds -bcb\libboost_regex-bcb-mt-1_45.lib : bcb\libboost_regex-bcb-mt-1_45\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_45\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_45\cregex.obj bcb\libboost_regex-bcb-mt-1_45\fileiter.obj bcb\libboost_regex-bcb-mt-1_45\icu.obj bcb\libboost_regex-bcb-mt-1_45\instances.obj bcb\libboost_regex-bcb-mt-1_45\posix_api.obj bcb\libboost_regex-bcb-mt-1_45\regex.obj bcb\libboost_regex-bcb-mt-1_45\regex_debug.obj bcb\libboost_regex-bcb-mt-1_45\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_45\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_45\static_mutex.obj bcb\libboost_regex-bcb-mt-1_45\usinstances.obj bcb\libboost_regex-bcb-mt-1_45\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_45\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_45\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_45\winstances.obj - if exist bcb\libboost_regex-bcb-mt-1_45.lib del bcb\libboost_regex-bcb-mt-1_45.lib +bcb\libboost_regex-bcb-mt-1_46.lib : bcb\libboost_regex-bcb-mt-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_46\cregex.obj bcb\libboost_regex-bcb-mt-1_46\fileiter.obj bcb\libboost_regex-bcb-mt-1_46\icu.obj bcb\libboost_regex-bcb-mt-1_46\instances.obj bcb\libboost_regex-bcb-mt-1_46\posix_api.obj bcb\libboost_regex-bcb-mt-1_46\regex.obj bcb\libboost_regex-bcb-mt-1_46\regex_debug.obj bcb\libboost_regex-bcb-mt-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_46\static_mutex.obj bcb\libboost_regex-bcb-mt-1_46\usinstances.obj bcb\libboost_regex-bcb-mt-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_46\winstances.obj + if exist bcb\libboost_regex-bcb-mt-1_46.lib del bcb\libboost_regex-bcb-mt-1_46.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_45.lib" +"bcb\libboost_regex-bcb-mt-1_45\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_45\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_45\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_45\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_45\icu.obj" +"bcb\libboost_regex-bcb-mt-1_45\instances.obj" +"bcb\libboost_regex-bcb-mt-1_45\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_45\regex.obj" +"bcb\libboost_regex-bcb-mt-1_45\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_45\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_45\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_45\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_45\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_45\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_45\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_45\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_45\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_46.lib" +"bcb\libboost_regex-bcb-mt-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_46\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_46\icu.obj" +"bcb\libboost_regex-bcb-mt-1_46\instances.obj" +"bcb\libboost_regex-bcb-mt-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_46\regex.obj" +"bcb\libboost_regex-bcb-mt-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_46\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-1_45.lib +# section for libboost_regex-bcb-1_46.lib # ######################################################## -bcb\libboost_regex-bcb-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-1_45 : - -@mkdir bcb\libboost_regex-bcb-1_45 +bcb\libboost_regex-bcb-1_46 : + -@mkdir bcb\libboost_regex-bcb-1_46 -libboost_regex-bcb-1_45_clean : - del bcb\libboost_regex-bcb-1_45\*.obj - del bcb\libboost_regex-bcb-1_45\*.il? - del bcb\libboost_regex-bcb-1_45\*.csm - del bcb\libboost_regex-bcb-1_45\*.tds +libboost_regex-bcb-1_46_clean : + del bcb\libboost_regex-bcb-1_46\*.obj + del bcb\libboost_regex-bcb-1_46\*.il? + del bcb\libboost_regex-bcb-1_46\*.csm + del bcb\libboost_regex-bcb-1_46\*.tds -bcb\libboost_regex-bcb-1_45.lib : bcb\libboost_regex-bcb-1_45\c_regex_traits.obj bcb\libboost_regex-bcb-1_45\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_45\cregex.obj bcb\libboost_regex-bcb-1_45\fileiter.obj bcb\libboost_regex-bcb-1_45\icu.obj bcb\libboost_regex-bcb-1_45\instances.obj bcb\libboost_regex-bcb-1_45\posix_api.obj bcb\libboost_regex-bcb-1_45\regex.obj bcb\libboost_regex-bcb-1_45\regex_debug.obj bcb\libboost_regex-bcb-1_45\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_45\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_45\static_mutex.obj bcb\libboost_regex-bcb-1_45\usinstances.obj bcb\libboost_regex-bcb-1_45\w32_regex_traits.obj bcb\libboost_regex-bcb-1_45\wc_regex_traits.obj bcb\libboost_regex-bcb-1_45\wide_posix_api.obj bcb\libboost_regex-bcb-1_45\winstances.obj - if exist bcb\libboost_regex-bcb-1_45.lib del bcb\libboost_regex-bcb-1_45.lib +bcb\libboost_regex-bcb-1_46.lib : bcb\libboost_regex-bcb-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_46\cregex.obj bcb\libboost_regex-bcb-1_46\fileiter.obj bcb\libboost_regex-bcb-1_46\icu.obj bcb\libboost_regex-bcb-1_46\instances.obj bcb\libboost_regex-bcb-1_46\posix_api.obj bcb\libboost_regex-bcb-1_46\regex.obj bcb\libboost_regex-bcb-1_46\regex_debug.obj bcb\libboost_regex-bcb-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_46\static_mutex.obj bcb\libboost_regex-bcb-1_46\usinstances.obj bcb\libboost_regex-bcb-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-1_46\winstances.obj + if exist bcb\libboost_regex-bcb-1_46.lib del bcb\libboost_regex-bcb-1_46.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_45.lib" +"bcb\libboost_regex-bcb-1_45\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_45\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_45\cregex.obj" +"bcb\libboost_regex-bcb-1_45\fileiter.obj" +"bcb\libboost_regex-bcb-1_45\icu.obj" +"bcb\libboost_regex-bcb-1_45\instances.obj" +"bcb\libboost_regex-bcb-1_45\posix_api.obj" +"bcb\libboost_regex-bcb-1_45\regex.obj" +"bcb\libboost_regex-bcb-1_45\regex_debug.obj" +"bcb\libboost_regex-bcb-1_45\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_45\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_45\static_mutex.obj" +"bcb\libboost_regex-bcb-1_45\usinstances.obj" +"bcb\libboost_regex-bcb-1_45\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_45\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_45\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_45\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_46.lib" +"bcb\libboost_regex-bcb-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_46\cregex.obj" +"bcb\libboost_regex-bcb-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-1_46\icu.obj" +"bcb\libboost_regex-bcb-1_46\instances.obj" +"bcb\libboost_regex-bcb-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-1_46\regex.obj" +"bcb\libboost_regex-bcb-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_46\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-sd-1_45.lib +# section for libboost_regex-bcb-sd-1_46.lib # ######################################################## -bcb\libboost_regex-bcb-sd-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-sd-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-sd-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-sd-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-sd-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-sd-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-sd-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-sd-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-sd-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-sd-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-sd-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-sd-1_45 : - -@mkdir bcb\libboost_regex-bcb-sd-1_45 +bcb\libboost_regex-bcb-sd-1_46 : + -@mkdir bcb\libboost_regex-bcb-sd-1_46 -libboost_regex-bcb-sd-1_45_clean : - del bcb\libboost_regex-bcb-sd-1_45\*.obj - del bcb\libboost_regex-bcb-sd-1_45\*.il? - del bcb\libboost_regex-bcb-sd-1_45\*.csm - del bcb\libboost_regex-bcb-sd-1_45\*.tds +libboost_regex-bcb-sd-1_46_clean : + del bcb\libboost_regex-bcb-sd-1_46\*.obj + del bcb\libboost_regex-bcb-sd-1_46\*.il? + del bcb\libboost_regex-bcb-sd-1_46\*.csm + del bcb\libboost_regex-bcb-sd-1_46\*.tds -bcb\libboost_regex-bcb-sd-1_45.lib : bcb\libboost_regex-bcb-sd-1_45\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_45\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_45\cregex.obj bcb\libboost_regex-bcb-sd-1_45\fileiter.obj bcb\libboost_regex-bcb-sd-1_45\icu.obj bcb\libboost_regex-bcb-sd-1_45\instances.obj bcb\libboost_regex-bcb-sd-1_45\posix_api.obj bcb\libboost_regex-bcb-sd-1_45\regex.obj bcb\libboost_regex-bcb-sd-1_45\regex_debug.obj bcb\libboost_regex-bcb-sd-1_45\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_45\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_45\static_mutex.obj bcb\libboost_regex-bcb-sd-1_45\usinstances.obj bcb\libboost_regex-bcb-sd-1_45\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_45\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_45\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_45\winstances.obj - if exist bcb\libboost_regex-bcb-sd-1_45.lib del bcb\libboost_regex-bcb-sd-1_45.lib +bcb\libboost_regex-bcb-sd-1_46.lib : bcb\libboost_regex-bcb-sd-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_46\cregex.obj bcb\libboost_regex-bcb-sd-1_46\fileiter.obj bcb\libboost_regex-bcb-sd-1_46\icu.obj bcb\libboost_regex-bcb-sd-1_46\instances.obj bcb\libboost_regex-bcb-sd-1_46\posix_api.obj bcb\libboost_regex-bcb-sd-1_46\regex.obj bcb\libboost_regex-bcb-sd-1_46\regex_debug.obj bcb\libboost_regex-bcb-sd-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_46\static_mutex.obj bcb\libboost_regex-bcb-sd-1_46\usinstances.obj bcb\libboost_regex-bcb-sd-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_46\winstances.obj + if exist bcb\libboost_regex-bcb-sd-1_46.lib del bcb\libboost_regex-bcb-sd-1_46.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_45.lib" +"bcb\libboost_regex-bcb-sd-1_45\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_45\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_45\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_45\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_45\icu.obj" +"bcb\libboost_regex-bcb-sd-1_45\instances.obj" +"bcb\libboost_regex-bcb-sd-1_45\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_45\regex.obj" +"bcb\libboost_regex-bcb-sd-1_45\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_45\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_45\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_45\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_45\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_45\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_45\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_45\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_45\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_46.lib" +"bcb\libboost_regex-bcb-sd-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_46\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_46\icu.obj" +"bcb\libboost_regex-bcb-sd-1_46\instances.obj" +"bcb\libboost_regex-bcb-sd-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_46\regex.obj" +"bcb\libboost_regex-bcb-sd-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_46\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-sd-1_45.lib +# section for libboost_regex-bcb-mt-sd-1_46.lib # ######################################################## -bcb\libboost_regex-bcb-mt-sd-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_45 : - -@mkdir bcb\libboost_regex-bcb-mt-sd-1_45 +bcb\libboost_regex-bcb-mt-sd-1_46 : + -@mkdir bcb\libboost_regex-bcb-mt-sd-1_46 -libboost_regex-bcb-mt-sd-1_45_clean : - del bcb\libboost_regex-bcb-mt-sd-1_45\*.obj - del bcb\libboost_regex-bcb-mt-sd-1_45\*.il? - del bcb\libboost_regex-bcb-mt-sd-1_45\*.csm - del bcb\libboost_regex-bcb-mt-sd-1_45\*.tds +libboost_regex-bcb-mt-sd-1_46_clean : + del bcb\libboost_regex-bcb-mt-sd-1_46\*.obj + del bcb\libboost_regex-bcb-mt-sd-1_46\*.il? + del bcb\libboost_regex-bcb-mt-sd-1_46\*.csm + del bcb\libboost_regex-bcb-mt-sd-1_46\*.tds -bcb\libboost_regex-bcb-mt-sd-1_45.lib : bcb\libboost_regex-bcb-mt-sd-1_45\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_45\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_45\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_45\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_45\icu.obj bcb\libboost_regex-bcb-mt-sd-1_45\instances.obj bcb\libboost_regex-bcb-mt-sd-1_45\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_45\regex.obj bcb\libboost_regex-bcb-mt-sd-1_45\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_45\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_45\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_45\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_45\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_45\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_45\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_45\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_45\winstances.obj - if exist bcb\libboost_regex-bcb-mt-sd-1_45.lib del bcb\libboost_regex-bcb-mt-sd-1_45.lib +bcb\libboost_regex-bcb-mt-sd-1_46.lib : bcb\libboost_regex-bcb-mt-sd-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_46\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_46\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_46\icu.obj bcb\libboost_regex-bcb-mt-sd-1_46\instances.obj bcb\libboost_regex-bcb-mt-sd-1_46\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_46\regex.obj bcb\libboost_regex-bcb-mt-sd-1_46\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_46\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_46\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_46\winstances.obj + if exist bcb\libboost_regex-bcb-mt-sd-1_46.lib del bcb\libboost_regex-bcb-mt-sd-1_46.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_45.lib" +"bcb\libboost_regex-bcb-mt-sd-1_45\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_45\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_46.lib" +"bcb\libboost_regex-bcb-mt-sd-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-d-1_45.lib +# section for boost_regex-bcb-mt-d-1_46.lib # ######################################################## -bcb\boost_regex-bcb-mt-d-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-d-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-d-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-d-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-d-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-d-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-d-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-d-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-d-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-d-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-d-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-d-1_45 : - -@mkdir bcb\boost_regex-bcb-mt-d-1_45 +bcb\boost_regex-bcb-mt-d-1_46 : + -@mkdir bcb\boost_regex-bcb-mt-d-1_46 -boost_regex-bcb-mt-d-1_45_clean : - del bcb\boost_regex-bcb-mt-d-1_45\*.obj - del bcb\boost_regex-bcb-mt-d-1_45\*.il? - del bcb\boost_regex-bcb-mt-d-1_45\*.csm - del bcb\boost_regex-bcb-mt-d-1_45\*.tds +boost_regex-bcb-mt-d-1_46_clean : + del bcb\boost_regex-bcb-mt-d-1_46\*.obj + del bcb\boost_regex-bcb-mt-d-1_46\*.il? + del bcb\boost_regex-bcb-mt-d-1_46\*.csm + del bcb\boost_regex-bcb-mt-d-1_46\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-d-1_45.lib : bcb\boost_regex-bcb-mt-d-1_45\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_45\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_45\cregex.obj bcb\boost_regex-bcb-mt-d-1_45\fileiter.obj bcb\boost_regex-bcb-mt-d-1_45\icu.obj bcb\boost_regex-bcb-mt-d-1_45\instances.obj bcb\boost_regex-bcb-mt-d-1_45\posix_api.obj bcb\boost_regex-bcb-mt-d-1_45\regex.obj bcb\boost_regex-bcb-mt-d-1_45\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_45\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_45\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_45\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_45\usinstances.obj bcb\boost_regex-bcb-mt-d-1_45\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_45\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_45\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_45\winstances.obj +bcb\boost_regex-bcb-mt-d-1_46.lib : bcb\boost_regex-bcb-mt-d-1_46\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\cregex.obj bcb\boost_regex-bcb-mt-d-1_46\fileiter.obj bcb\boost_regex-bcb-mt-d-1_46\icu.obj bcb\boost_regex-bcb-mt-d-1_46\instances.obj bcb\boost_regex-bcb-mt-d-1_46\posix_api.obj bcb\boost_regex-bcb-mt-d-1_46\regex.obj bcb\boost_regex-bcb-mt-d-1_46\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_46\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_46\usinstances.obj bcb\boost_regex-bcb-mt-d-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_46\winstances.obj bcc32 @&&| --lw-dup -lw-dpl -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-mt-d-1_45.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_45\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_45\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_45\cregex.obj bcb\boost_regex-bcb-mt-d-1_45\fileiter.obj bcb\boost_regex-bcb-mt-d-1_45\icu.obj bcb\boost_regex-bcb-mt-d-1_45\instances.obj bcb\boost_regex-bcb-mt-d-1_45\posix_api.obj bcb\boost_regex-bcb-mt-d-1_45\regex.obj bcb\boost_regex-bcb-mt-d-1_45\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_45\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_45\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_45\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_45\usinstances.obj bcb\boost_regex-bcb-mt-d-1_45\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_45\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_45\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_45\winstances.obj $(LIBS) +-lw-dup -lw-dpl -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-mt-d-1_46.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_46\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\cregex.obj bcb\boost_regex-bcb-mt-d-1_46\fileiter.obj bcb\boost_regex-bcb-mt-d-1_46\icu.obj bcb\boost_regex-bcb-mt-d-1_46\instances.obj bcb\boost_regex-bcb-mt-d-1_46\posix_api.obj bcb\boost_regex-bcb-mt-d-1_46\regex.obj bcb\boost_regex-bcb-mt-d-1_46\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_46\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_46\usinstances.obj bcb\boost_regex-bcb-mt-d-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_46\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-d-1_45.lib bcb\boost_regex-bcb-mt-d-1_45.dll + implib -w bcb\boost_regex-bcb-mt-d-1_46.lib bcb\boost_regex-bcb-mt-d-1_46.dll ######################################################## # -# section for boost_regex-bcb-d-1_45.lib +# section for boost_regex-bcb-d-1_46.lib # ######################################################## -bcb\boost_regex-bcb-d-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-d-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-d-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-d-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-d-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-d-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-d-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-d-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-d-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-d-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-d-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-d-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-d-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-d-1_45 : - -@mkdir bcb\boost_regex-bcb-d-1_45 +bcb\boost_regex-bcb-d-1_46 : + -@mkdir bcb\boost_regex-bcb-d-1_46 -boost_regex-bcb-d-1_45_clean : - del bcb\boost_regex-bcb-d-1_45\*.obj - del bcb\boost_regex-bcb-d-1_45\*.il? - del bcb\boost_regex-bcb-d-1_45\*.csm - del bcb\boost_regex-bcb-d-1_45\*.tds +boost_regex-bcb-d-1_46_clean : + del bcb\boost_regex-bcb-d-1_46\*.obj + del bcb\boost_regex-bcb-d-1_46\*.il? + del bcb\boost_regex-bcb-d-1_46\*.csm + del bcb\boost_regex-bcb-d-1_46\*.tds del bcb\*.tds -bcb\boost_regex-bcb-d-1_45.lib : bcb\boost_regex-bcb-d-1_45\c_regex_traits.obj bcb\boost_regex-bcb-d-1_45\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_45\cregex.obj bcb\boost_regex-bcb-d-1_45\fileiter.obj bcb\boost_regex-bcb-d-1_45\icu.obj bcb\boost_regex-bcb-d-1_45\instances.obj bcb\boost_regex-bcb-d-1_45\posix_api.obj bcb\boost_regex-bcb-d-1_45\regex.obj bcb\boost_regex-bcb-d-1_45\regex_debug.obj bcb\boost_regex-bcb-d-1_45\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_45\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_45\static_mutex.obj bcb\boost_regex-bcb-d-1_45\usinstances.obj bcb\boost_regex-bcb-d-1_45\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_45\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_45\wide_posix_api.obj bcb\boost_regex-bcb-d-1_45\winstances.obj +bcb\boost_regex-bcb-d-1_46.lib : bcb\boost_regex-bcb-d-1_46\c_regex_traits.obj bcb\boost_regex-bcb-d-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_46\cregex.obj bcb\boost_regex-bcb-d-1_46\fileiter.obj bcb\boost_regex-bcb-d-1_46\icu.obj bcb\boost_regex-bcb-d-1_46\instances.obj bcb\boost_regex-bcb-d-1_46\posix_api.obj bcb\boost_regex-bcb-d-1_46\regex.obj bcb\boost_regex-bcb-d-1_46\regex_debug.obj bcb\boost_regex-bcb-d-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_46\static_mutex.obj bcb\boost_regex-bcb-d-1_46\usinstances.obj bcb\boost_regex-bcb-d-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_46\wide_posix_api.obj bcb\boost_regex-bcb-d-1_46\winstances.obj bcc32 @&&| --lw-dup -lw-dpl -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-d-1_45.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_45\c_regex_traits.obj bcb\boost_regex-bcb-d-1_45\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_45\cregex.obj bcb\boost_regex-bcb-d-1_45\fileiter.obj bcb\boost_regex-bcb-d-1_45\icu.obj bcb\boost_regex-bcb-d-1_45\instances.obj bcb\boost_regex-bcb-d-1_45\posix_api.obj bcb\boost_regex-bcb-d-1_45\regex.obj bcb\boost_regex-bcb-d-1_45\regex_debug.obj bcb\boost_regex-bcb-d-1_45\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_45\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_45\static_mutex.obj bcb\boost_regex-bcb-d-1_45\usinstances.obj bcb\boost_regex-bcb-d-1_45\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_45\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_45\wide_posix_api.obj bcb\boost_regex-bcb-d-1_45\winstances.obj $(LIBS) +-lw-dup -lw-dpl -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-d-1_46.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_46\c_regex_traits.obj bcb\boost_regex-bcb-d-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_46\cregex.obj bcb\boost_regex-bcb-d-1_46\fileiter.obj bcb\boost_regex-bcb-d-1_46\icu.obj bcb\boost_regex-bcb-d-1_46\instances.obj bcb\boost_regex-bcb-d-1_46\posix_api.obj bcb\boost_regex-bcb-d-1_46\regex.obj bcb\boost_regex-bcb-d-1_46\regex_debug.obj bcb\boost_regex-bcb-d-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_46\static_mutex.obj bcb\boost_regex-bcb-d-1_46\usinstances.obj bcb\boost_regex-bcb-d-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_46\wide_posix_api.obj bcb\boost_regex-bcb-d-1_46\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-d-1_45.lib bcb\boost_regex-bcb-d-1_45.dll + implib -w bcb\boost_regex-bcb-d-1_46.lib bcb\boost_regex-bcb-d-1_46.dll ######################################################## # -# section for libboost_regex-bcb-mt-d-1_45.lib +# section for libboost_regex-bcb-mt-d-1_46.lib # ######################################################## -bcb\libboost_regex-bcb-mt-d-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_45 : - -@mkdir bcb\libboost_regex-bcb-mt-d-1_45 +bcb\libboost_regex-bcb-mt-d-1_46 : + -@mkdir bcb\libboost_regex-bcb-mt-d-1_46 -libboost_regex-bcb-mt-d-1_45_clean : - del bcb\libboost_regex-bcb-mt-d-1_45\*.obj - del bcb\libboost_regex-bcb-mt-d-1_45\*.il? - del bcb\libboost_regex-bcb-mt-d-1_45\*.csm - del bcb\libboost_regex-bcb-mt-d-1_45\*.tds +libboost_regex-bcb-mt-d-1_46_clean : + del bcb\libboost_regex-bcb-mt-d-1_46\*.obj + del bcb\libboost_regex-bcb-mt-d-1_46\*.il? + del bcb\libboost_regex-bcb-mt-d-1_46\*.csm + del bcb\libboost_regex-bcb-mt-d-1_46\*.tds -bcb\libboost_regex-bcb-mt-d-1_45.lib : bcb\libboost_regex-bcb-mt-d-1_45\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_45\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_45\cregex.obj bcb\libboost_regex-bcb-mt-d-1_45\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_45\icu.obj bcb\libboost_regex-bcb-mt-d-1_45\instances.obj bcb\libboost_regex-bcb-mt-d-1_45\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_45\regex.obj bcb\libboost_regex-bcb-mt-d-1_45\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_45\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_45\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_45\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_45\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_45\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_45\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_45\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_45\winstances.obj - if exist bcb\libboost_regex-bcb-mt-d-1_45.lib del bcb\libboost_regex-bcb-mt-d-1_45.lib +bcb\libboost_regex-bcb-mt-d-1_46.lib : bcb\libboost_regex-bcb-mt-d-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_46\cregex.obj bcb\libboost_regex-bcb-mt-d-1_46\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_46\icu.obj bcb\libboost_regex-bcb-mt-d-1_46\instances.obj bcb\libboost_regex-bcb-mt-d-1_46\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_46\regex.obj bcb\libboost_regex-bcb-mt-d-1_46\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_46\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_46\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_46\winstances.obj + if exist bcb\libboost_regex-bcb-mt-d-1_46.lib del bcb\libboost_regex-bcb-mt-d-1_46.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_45.lib" +"bcb\libboost_regex-bcb-mt-d-1_45\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_45\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_46.lib" +"bcb\libboost_regex-bcb-mt-d-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-d-1_45.lib +# section for libboost_regex-bcb-d-1_46.lib # ######################################################## -bcb\libboost_regex-bcb-d-1_45\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_45\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_45\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-d-1_45\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-d-1_45\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-d-1_45\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-d-1_45\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-d-1_45\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-d-1_45\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-d-1_45\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-d-1_45\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-d-1_45\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-d-1_45\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-d-1_45\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_45\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_45\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-d-1_45\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_45\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-d-1_45 : - -@mkdir bcb\libboost_regex-bcb-d-1_45 +bcb\libboost_regex-bcb-d-1_46 : + -@mkdir bcb\libboost_regex-bcb-d-1_46 -libboost_regex-bcb-d-1_45_clean : - del bcb\libboost_regex-bcb-d-1_45\*.obj - del bcb\libboost_regex-bcb-d-1_45\*.il? - del bcb\libboost_regex-bcb-d-1_45\*.csm - del bcb\libboost_regex-bcb-d-1_45\*.tds +libboost_regex-bcb-d-1_46_clean : + del bcb\libboost_regex-bcb-d-1_46\*.obj + del bcb\libboost_regex-bcb-d-1_46\*.il? + del bcb\libboost_regex-bcb-d-1_46\*.csm + del bcb\libboost_regex-bcb-d-1_46\*.tds -bcb\libboost_regex-bcb-d-1_45.lib : bcb\libboost_regex-bcb-d-1_45\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_45\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_45\cregex.obj bcb\libboost_regex-bcb-d-1_45\fileiter.obj bcb\libboost_regex-bcb-d-1_45\icu.obj bcb\libboost_regex-bcb-d-1_45\instances.obj bcb\libboost_regex-bcb-d-1_45\posix_api.obj bcb\libboost_regex-bcb-d-1_45\regex.obj bcb\libboost_regex-bcb-d-1_45\regex_debug.obj bcb\libboost_regex-bcb-d-1_45\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_45\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_45\static_mutex.obj bcb\libboost_regex-bcb-d-1_45\usinstances.obj bcb\libboost_regex-bcb-d-1_45\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_45\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_45\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_45\winstances.obj - if exist bcb\libboost_regex-bcb-d-1_45.lib del bcb\libboost_regex-bcb-d-1_45.lib +bcb\libboost_regex-bcb-d-1_46.lib : bcb\libboost_regex-bcb-d-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_46\cregex.obj bcb\libboost_regex-bcb-d-1_46\fileiter.obj bcb\libboost_regex-bcb-d-1_46\icu.obj bcb\libboost_regex-bcb-d-1_46\instances.obj bcb\libboost_regex-bcb-d-1_46\posix_api.obj bcb\libboost_regex-bcb-d-1_46\regex.obj bcb\libboost_regex-bcb-d-1_46\regex_debug.obj bcb\libboost_regex-bcb-d-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_46\static_mutex.obj bcb\libboost_regex-bcb-d-1_46\usinstances.obj bcb\libboost_regex-bcb-d-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_46\winstances.obj + if exist bcb\libboost_regex-bcb-d-1_46.lib del bcb\libboost_regex-bcb-d-1_46.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_45.lib" +"bcb\libboost_regex-bcb-d-1_45\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_45\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_45\cregex.obj" +"bcb\libboost_regex-bcb-d-1_45\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_45\icu.obj" +"bcb\libboost_regex-bcb-d-1_45\instances.obj" +"bcb\libboost_regex-bcb-d-1_45\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_45\regex.obj" +"bcb\libboost_regex-bcb-d-1_45\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_45\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_45\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_45\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_45\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_45\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_45\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_45\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_45\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_46.lib" +"bcb\libboost_regex-bcb-d-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_46\cregex.obj" +"bcb\libboost_regex-bcb-d-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_46\icu.obj" +"bcb\libboost_regex-bcb-d-1_46\instances.obj" +"bcb\libboost_regex-bcb-d-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_46\regex.obj" +"bcb\libboost_regex-bcb-d-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_46\winstances.obj" | diff --git a/build/gcc-shared.mak b/build/gcc-shared.mak index 20e28a5d..504846f7 100644 --- a/build/gcc-shared.mak +++ b/build/gcc-shared.mak @@ -47,12 +47,12 @@ endif ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : gcc gcc gcc/boost_regex-gcc-1_45_shared ./gcc/libboost_regex-gcc-1_45.so gcc gcc/boost_regex-gcc-d-1_45_shared ./gcc/libboost_regex-gcc-d-1_45.so +all : gcc gcc gcc/boost_regex-gcc-1_46_shared ./gcc/libboost_regex-gcc-1_46.so gcc gcc/boost_regex-gcc-d-1_46_shared ./gcc/libboost_regex-gcc-d-1_46.so gcc : mkdir -p gcc -clean : boost_regex-gcc-1_45_clean boost_regex-gcc-d-1_45_clean +clean : boost_regex-gcc-1_46_clean boost_regex-gcc-d-1_46_clean install : all @@ -60,131 +60,131 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_45.a +# section for libboost_regex-gcc-1_46.a # ######################################################## -gcc/boost_regex-gcc-1_45_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_46_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_45_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_46_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_45_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_46_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_45_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_46_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_45_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_46_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_45_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_46_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_45_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_46_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_45_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_46_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_45_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_46_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_45_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_46_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_45_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_46_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_45_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_46_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_45_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_46_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_45_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_46_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_45_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_46_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_45_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_46_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_45_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_46_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_45_shared : - mkdir -p gcc/boost_regex-gcc-1_45_shared +gcc/boost_regex-gcc-1_46_shared : + mkdir -p gcc/boost_regex-gcc-1_46_shared -boost_regex-gcc-1_45_clean : - rm -f gcc/boost_regex-gcc-1_45_shared/*.o +boost_regex-gcc-1_46_clean : + rm -f gcc/boost_regex-gcc-1_46_shared/*.o -./gcc/libboost_regex-gcc-1_45.so : gcc/boost_regex-gcc-1_45_shared/c_regex_traits.o gcc/boost_regex-gcc-1_45_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_45_shared/cregex.o gcc/boost_regex-gcc-1_45_shared/fileiter.o gcc/boost_regex-gcc-1_45_shared/icu.o gcc/boost_regex-gcc-1_45_shared/instances.o gcc/boost_regex-gcc-1_45_shared/posix_api.o gcc/boost_regex-gcc-1_45_shared/regex.o gcc/boost_regex-gcc-1_45_shared/regex_debug.o gcc/boost_regex-gcc-1_45_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_45_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_45_shared/static_mutex.o gcc/boost_regex-gcc-1_45_shared/usinstances.o gcc/boost_regex-gcc-1_45_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_45_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_45_shared/wide_posix_api.o gcc/boost_regex-gcc-1_45_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-1_45.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_45_shared/c_regex_traits.o gcc/boost_regex-gcc-1_45_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_45_shared/cregex.o gcc/boost_regex-gcc-1_45_shared/fileiter.o gcc/boost_regex-gcc-1_45_shared/icu.o gcc/boost_regex-gcc-1_45_shared/instances.o gcc/boost_regex-gcc-1_45_shared/posix_api.o gcc/boost_regex-gcc-1_45_shared/regex.o gcc/boost_regex-gcc-1_45_shared/regex_debug.o gcc/boost_regex-gcc-1_45_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_45_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_45_shared/static_mutex.o gcc/boost_regex-gcc-1_45_shared/usinstances.o gcc/boost_regex-gcc-1_45_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_45_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_45_shared/wide_posix_api.o gcc/boost_regex-gcc-1_45_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-1_46.so : gcc/boost_regex-gcc-1_46_shared/c_regex_traits.o gcc/boost_regex-gcc-1_46_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_46_shared/cregex.o gcc/boost_regex-gcc-1_46_shared/fileiter.o gcc/boost_regex-gcc-1_46_shared/icu.o gcc/boost_regex-gcc-1_46_shared/instances.o gcc/boost_regex-gcc-1_46_shared/posix_api.o gcc/boost_regex-gcc-1_46_shared/regex.o gcc/boost_regex-gcc-1_46_shared/regex_debug.o gcc/boost_regex-gcc-1_46_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_46_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_46_shared/static_mutex.o gcc/boost_regex-gcc-1_46_shared/usinstances.o gcc/boost_regex-gcc-1_46_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_46_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_46_shared/wide_posix_api.o gcc/boost_regex-gcc-1_46_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-1_46.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_46_shared/c_regex_traits.o gcc/boost_regex-gcc-1_46_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_46_shared/cregex.o gcc/boost_regex-gcc-1_46_shared/fileiter.o gcc/boost_regex-gcc-1_46_shared/icu.o gcc/boost_regex-gcc-1_46_shared/instances.o gcc/boost_regex-gcc-1_46_shared/posix_api.o gcc/boost_regex-gcc-1_46_shared/regex.o gcc/boost_regex-gcc-1_46_shared/regex_debug.o gcc/boost_regex-gcc-1_46_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_46_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_46_shared/static_mutex.o gcc/boost_regex-gcc-1_46_shared/usinstances.o gcc/boost_regex-gcc-1_46_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_46_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_46_shared/wide_posix_api.o gcc/boost_regex-gcc-1_46_shared/winstances.o $(ICU_LIBS) $(LIBS) ######################################################## # -# section for libboost_regex-gcc-d-1_45.a +# section for libboost_regex-gcc-d-1_46.a # ######################################################## -gcc/boost_regex-gcc-d-1_45_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_46_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_45_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_46_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_45_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_46_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_45_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_46_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_45_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_46_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_45_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_46_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_45_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_46_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_45_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_46_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_45_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_46_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_45_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_46_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_45_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_46_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_45_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_46_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_45_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_46_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_45_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_46_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_45_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_46_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_45_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_46_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_45_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_46_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_45_shared : - mkdir -p gcc/boost_regex-gcc-d-1_45_shared +gcc/boost_regex-gcc-d-1_46_shared : + mkdir -p gcc/boost_regex-gcc-d-1_46_shared -boost_regex-gcc-d-1_45_clean : - rm -f gcc/boost_regex-gcc-d-1_45_shared/*.o +boost_regex-gcc-d-1_46_clean : + rm -f gcc/boost_regex-gcc-d-1_46_shared/*.o -./gcc/libboost_regex-gcc-d-1_45.so : gcc/boost_regex-gcc-d-1_45_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_45_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_45_shared/cregex.o gcc/boost_regex-gcc-d-1_45_shared/fileiter.o gcc/boost_regex-gcc-d-1_45_shared/icu.o gcc/boost_regex-gcc-d-1_45_shared/instances.o gcc/boost_regex-gcc-d-1_45_shared/posix_api.o gcc/boost_regex-gcc-d-1_45_shared/regex.o gcc/boost_regex-gcc-d-1_45_shared/regex_debug.o gcc/boost_regex-gcc-d-1_45_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_45_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_45_shared/static_mutex.o gcc/boost_regex-gcc-d-1_45_shared/usinstances.o gcc/boost_regex-gcc-d-1_45_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_45_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_45_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_45_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-d-1_45.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_45_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_45_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_45_shared/cregex.o gcc/boost_regex-gcc-d-1_45_shared/fileiter.o gcc/boost_regex-gcc-d-1_45_shared/icu.o gcc/boost_regex-gcc-d-1_45_shared/instances.o gcc/boost_regex-gcc-d-1_45_shared/posix_api.o gcc/boost_regex-gcc-d-1_45_shared/regex.o gcc/boost_regex-gcc-d-1_45_shared/regex_debug.o gcc/boost_regex-gcc-d-1_45_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_45_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_45_shared/static_mutex.o gcc/boost_regex-gcc-d-1_45_shared/usinstances.o gcc/boost_regex-gcc-d-1_45_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_45_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_45_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_45_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-d-1_46.so : gcc/boost_regex-gcc-d-1_46_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/cregex.o gcc/boost_regex-gcc-d-1_46_shared/fileiter.o gcc/boost_regex-gcc-d-1_46_shared/icu.o gcc/boost_regex-gcc-d-1_46_shared/instances.o gcc/boost_regex-gcc-d-1_46_shared/posix_api.o gcc/boost_regex-gcc-d-1_46_shared/regex.o gcc/boost_regex-gcc-d-1_46_shared/regex_debug.o gcc/boost_regex-gcc-d-1_46_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_46_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_46_shared/static_mutex.o gcc/boost_regex-gcc-d-1_46_shared/usinstances.o gcc/boost_regex-gcc-d-1_46_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_46_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-d-1_46.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_46_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/cregex.o gcc/boost_regex-gcc-d-1_46_shared/fileiter.o gcc/boost_regex-gcc-d-1_46_shared/icu.o gcc/boost_regex-gcc-d-1_46_shared/instances.o gcc/boost_regex-gcc-d-1_46_shared/posix_api.o gcc/boost_regex-gcc-d-1_46_shared/regex.o gcc/boost_regex-gcc-d-1_46_shared/regex_debug.o gcc/boost_regex-gcc-d-1_46_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_46_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_46_shared/static_mutex.o gcc/boost_regex-gcc-d-1_46_shared/usinstances.o gcc/boost_regex-gcc-d-1_46_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_46_shared/winstances.o $(ICU_LIBS) $(LIBS) diff --git a/build/gcc.mak b/build/gcc.mak index 891ed27f..f378b855 100644 --- a/build/gcc.mak +++ b/build/gcc.mak @@ -47,12 +47,12 @@ endif ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : gcc gcc gcc/boost_regex-gcc-1_45 ./gcc/libboost_regex-gcc-1_45.a gcc gcc/boost_regex-gcc-d-1_45 ./gcc/libboost_regex-gcc-d-1_45.a +all : gcc gcc gcc/boost_regex-gcc-1_46 ./gcc/libboost_regex-gcc-1_46.a gcc gcc/boost_regex-gcc-d-1_46 ./gcc/libboost_regex-gcc-d-1_46.a gcc : mkdir -p gcc -clean : boost_regex-gcc-1_45_clean boost_regex-gcc-d-1_45_clean +clean : boost_regex-gcc-1_46_clean boost_regex-gcc-d-1_46_clean install : all @@ -60,133 +60,133 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_45.a +# section for libboost_regex-gcc-1_46.a # ######################################################## -gcc/boost_regex-gcc-1_45/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_46/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_45/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_46/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_45/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_46/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_45/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_46/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_45/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_46/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_45/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_46/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_45/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_46/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_45/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_46/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_45/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_46/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_45/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_46/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_45/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_46/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_45/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_46/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_45/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_46/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_45/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_46/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_45/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_46/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_45/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_46/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_45/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_45/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_46/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_45 : - mkdir -p gcc/boost_regex-gcc-1_45 +gcc/boost_regex-gcc-1_46 : + mkdir -p gcc/boost_regex-gcc-1_46 -boost_regex-gcc-1_45_clean : - rm -f gcc/boost_regex-gcc-1_45/*.o +boost_regex-gcc-1_46_clean : + rm -f gcc/boost_regex-gcc-1_46/*.o -./gcc/libboost_regex-gcc-1_45.a : gcc/boost_regex-gcc-1_45/c_regex_traits.o gcc/boost_regex-gcc-1_45/cpp_regex_traits.o gcc/boost_regex-gcc-1_45/cregex.o gcc/boost_regex-gcc-1_45/fileiter.o gcc/boost_regex-gcc-1_45/icu.o gcc/boost_regex-gcc-1_45/instances.o gcc/boost_regex-gcc-1_45/posix_api.o gcc/boost_regex-gcc-1_45/regex.o gcc/boost_regex-gcc-1_45/regex_debug.o gcc/boost_regex-gcc-1_45/regex_raw_buffer.o gcc/boost_regex-gcc-1_45/regex_traits_defaults.o gcc/boost_regex-gcc-1_45/static_mutex.o gcc/boost_regex-gcc-1_45/usinstances.o gcc/boost_regex-gcc-1_45/w32_regex_traits.o gcc/boost_regex-gcc-1_45/wc_regex_traits.o gcc/boost_regex-gcc-1_45/wide_posix_api.o gcc/boost_regex-gcc-1_45/winstances.o - ar -r gcc/libboost_regex-gcc-1_45.a gcc/boost_regex-gcc-1_45/c_regex_traits.o gcc/boost_regex-gcc-1_45/cpp_regex_traits.o gcc/boost_regex-gcc-1_45/cregex.o gcc/boost_regex-gcc-1_45/fileiter.o gcc/boost_regex-gcc-1_45/icu.o gcc/boost_regex-gcc-1_45/instances.o gcc/boost_regex-gcc-1_45/posix_api.o gcc/boost_regex-gcc-1_45/regex.o gcc/boost_regex-gcc-1_45/regex_debug.o gcc/boost_regex-gcc-1_45/regex_raw_buffer.o gcc/boost_regex-gcc-1_45/regex_traits_defaults.o gcc/boost_regex-gcc-1_45/static_mutex.o gcc/boost_regex-gcc-1_45/usinstances.o gcc/boost_regex-gcc-1_45/w32_regex_traits.o gcc/boost_regex-gcc-1_45/wc_regex_traits.o gcc/boost_regex-gcc-1_45/wide_posix_api.o gcc/boost_regex-gcc-1_45/winstances.o - -ar -s gcc/libboost_regex-gcc-1_45.a +./gcc/libboost_regex-gcc-1_46.a : gcc/boost_regex-gcc-1_46/c_regex_traits.o gcc/boost_regex-gcc-1_46/cpp_regex_traits.o gcc/boost_regex-gcc-1_46/cregex.o gcc/boost_regex-gcc-1_46/fileiter.o gcc/boost_regex-gcc-1_46/icu.o gcc/boost_regex-gcc-1_46/instances.o gcc/boost_regex-gcc-1_46/posix_api.o gcc/boost_regex-gcc-1_46/regex.o gcc/boost_regex-gcc-1_46/regex_debug.o gcc/boost_regex-gcc-1_46/regex_raw_buffer.o gcc/boost_regex-gcc-1_46/regex_traits_defaults.o gcc/boost_regex-gcc-1_46/static_mutex.o gcc/boost_regex-gcc-1_46/usinstances.o gcc/boost_regex-gcc-1_46/w32_regex_traits.o gcc/boost_regex-gcc-1_46/wc_regex_traits.o gcc/boost_regex-gcc-1_46/wide_posix_api.o gcc/boost_regex-gcc-1_46/winstances.o + ar -r gcc/libboost_regex-gcc-1_46.a gcc/boost_regex-gcc-1_46/c_regex_traits.o gcc/boost_regex-gcc-1_46/cpp_regex_traits.o gcc/boost_regex-gcc-1_46/cregex.o gcc/boost_regex-gcc-1_46/fileiter.o gcc/boost_regex-gcc-1_46/icu.o gcc/boost_regex-gcc-1_46/instances.o gcc/boost_regex-gcc-1_46/posix_api.o gcc/boost_regex-gcc-1_46/regex.o gcc/boost_regex-gcc-1_46/regex_debug.o gcc/boost_regex-gcc-1_46/regex_raw_buffer.o gcc/boost_regex-gcc-1_46/regex_traits_defaults.o gcc/boost_regex-gcc-1_46/static_mutex.o gcc/boost_regex-gcc-1_46/usinstances.o gcc/boost_regex-gcc-1_46/w32_regex_traits.o gcc/boost_regex-gcc-1_46/wc_regex_traits.o gcc/boost_regex-gcc-1_46/wide_posix_api.o gcc/boost_regex-gcc-1_46/winstances.o + -ar -s gcc/libboost_regex-gcc-1_46.a ######################################################## # -# section for libboost_regex-gcc-d-1_45.a +# section for libboost_regex-gcc-d-1_46.a # ######################################################## -gcc/boost_regex-gcc-d-1_45/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_46/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_45/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_46/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_45/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_46/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_45/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_46/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_45/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_46/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_45/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_46/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_45/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_46/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_45/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_46/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_45/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_46/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_45/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_46/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_45/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_46/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_45/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_46/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_45/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_46/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_45/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_46/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_45/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_46/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_45/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_46/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_45/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_45/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_46/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_45 : - mkdir -p gcc/boost_regex-gcc-d-1_45 +gcc/boost_regex-gcc-d-1_46 : + mkdir -p gcc/boost_regex-gcc-d-1_46 -boost_regex-gcc-d-1_45_clean : - rm -f gcc/boost_regex-gcc-d-1_45/*.o +boost_regex-gcc-d-1_46_clean : + rm -f gcc/boost_regex-gcc-d-1_46/*.o -./gcc/libboost_regex-gcc-d-1_45.a : gcc/boost_regex-gcc-d-1_45/c_regex_traits.o gcc/boost_regex-gcc-d-1_45/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_45/cregex.o gcc/boost_regex-gcc-d-1_45/fileiter.o gcc/boost_regex-gcc-d-1_45/icu.o gcc/boost_regex-gcc-d-1_45/instances.o gcc/boost_regex-gcc-d-1_45/posix_api.o gcc/boost_regex-gcc-d-1_45/regex.o gcc/boost_regex-gcc-d-1_45/regex_debug.o gcc/boost_regex-gcc-d-1_45/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_45/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_45/static_mutex.o gcc/boost_regex-gcc-d-1_45/usinstances.o gcc/boost_regex-gcc-d-1_45/w32_regex_traits.o gcc/boost_regex-gcc-d-1_45/wc_regex_traits.o gcc/boost_regex-gcc-d-1_45/wide_posix_api.o gcc/boost_regex-gcc-d-1_45/winstances.o - ar -r gcc/libboost_regex-gcc-d-1_45.a gcc/boost_regex-gcc-d-1_45/c_regex_traits.o gcc/boost_regex-gcc-d-1_45/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_45/cregex.o gcc/boost_regex-gcc-d-1_45/fileiter.o gcc/boost_regex-gcc-d-1_45/icu.o gcc/boost_regex-gcc-d-1_45/instances.o gcc/boost_regex-gcc-d-1_45/posix_api.o gcc/boost_regex-gcc-d-1_45/regex.o gcc/boost_regex-gcc-d-1_45/regex_debug.o gcc/boost_regex-gcc-d-1_45/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_45/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_45/static_mutex.o gcc/boost_regex-gcc-d-1_45/usinstances.o gcc/boost_regex-gcc-d-1_45/w32_regex_traits.o gcc/boost_regex-gcc-d-1_45/wc_regex_traits.o gcc/boost_regex-gcc-d-1_45/wide_posix_api.o gcc/boost_regex-gcc-d-1_45/winstances.o - -ar -s gcc/libboost_regex-gcc-d-1_45.a +./gcc/libboost_regex-gcc-d-1_46.a : gcc/boost_regex-gcc-d-1_46/c_regex_traits.o gcc/boost_regex-gcc-d-1_46/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_46/cregex.o gcc/boost_regex-gcc-d-1_46/fileiter.o gcc/boost_regex-gcc-d-1_46/icu.o gcc/boost_regex-gcc-d-1_46/instances.o gcc/boost_regex-gcc-d-1_46/posix_api.o gcc/boost_regex-gcc-d-1_46/regex.o gcc/boost_regex-gcc-d-1_46/regex_debug.o gcc/boost_regex-gcc-d-1_46/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_46/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_46/static_mutex.o gcc/boost_regex-gcc-d-1_46/usinstances.o gcc/boost_regex-gcc-d-1_46/w32_regex_traits.o gcc/boost_regex-gcc-d-1_46/wc_regex_traits.o gcc/boost_regex-gcc-d-1_46/wide_posix_api.o gcc/boost_regex-gcc-d-1_46/winstances.o + ar -r gcc/libboost_regex-gcc-d-1_46.a gcc/boost_regex-gcc-d-1_46/c_regex_traits.o gcc/boost_regex-gcc-d-1_46/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_46/cregex.o gcc/boost_regex-gcc-d-1_46/fileiter.o gcc/boost_regex-gcc-d-1_46/icu.o gcc/boost_regex-gcc-d-1_46/instances.o gcc/boost_regex-gcc-d-1_46/posix_api.o gcc/boost_regex-gcc-d-1_46/regex.o gcc/boost_regex-gcc-d-1_46/regex_debug.o gcc/boost_regex-gcc-d-1_46/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_46/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_46/static_mutex.o gcc/boost_regex-gcc-d-1_46/usinstances.o gcc/boost_regex-gcc-d-1_46/w32_regex_traits.o gcc/boost_regex-gcc-d-1_46/wc_regex_traits.o gcc/boost_regex-gcc-d-1_46/wide_posix_api.o gcc/boost_regex-gcc-d-1_46/winstances.o + -ar -s gcc/libboost_regex-gcc-d-1_46.a diff --git a/build/vc10.mak b/build/vc10.mak new file mode 100644 index 00000000..fe892724 --- /dev/null +++ b/build/vc10.mak @@ -0,0 +1,491 @@ +# copyright John Maddock 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. +# +# auto generated makefile for MSVC compiler +# +# usage: +# make +# brings libraries up to date +# make install +# brings libraries up to date and copies binaries to your VC6 /lib and /bin directories (recomended) +# + +# +# path to ICU library installation goes here: +# +ICU_PATH= +# +# Add additional compiler options here: +# +CXXFLAGS= +# +# Add additional include directories here: +# +INCLUDES= +# +# add additional linker flags here: +# +XLFLAGS= +# +# add additional static-library creation flags here: +# +XSFLAGS= + +!IF "$(OS)" == "Windows_NT" +NULL= +!ELSE +NULL=nul +!ENDIF + +!IF "$(MSVCDIR)" == "" +MSVCDIR=$(VS100COMNTOOLS)..\..\VC +!ENDIF + +!IF "$(MSVCDIR)" == "" +!ERROR Variable MSVCDIR not set. +!ENDIF + +!IF "$(ICU_PATH)" == "" +ICU_COMPILE_OPTS= +ICU_LINK_OPTS= +!MESSAGE Building Boost.Regex without ICU / Unicode support: +!MESSAGE Hint: set ICU_PATH on the nmake command line to point +!MESSAGE to your ICU installation if you have one. +!ELSE +ICU_COMPILE_OPTS= -DBOOST_HAS_ICU=1 -I"$(ICU_PATH)\include" +ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib +!MESSAGE Building Boost.Regex with ICU in $(ICU_PATH) +!ENDIF + + +ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp + +all : main_dir libboost_regex-vc100-mt-s-1_46_dir ./vc100/libboost_regex-vc100-mt-s-1_46.lib libboost_regex-vc100-mt-sgd-1_46_dir ./vc100/libboost_regex-vc100-mt-sgd-1_46.lib boost_regex-vc100-mt-gd-1_46_dir ./vc100/boost_regex-vc100-mt-gd-1_46.lib boost_regex-vc100-mt-1_46_dir ./vc100/boost_regex-vc100-mt-1_46.lib libboost_regex-vc100-mt-1_46_dir ./vc100/libboost_regex-vc100-mt-1_46.lib libboost_regex-vc100-mt-gd-1_46_dir ./vc100/libboost_regex-vc100-mt-gd-1_46.lib + +clean : libboost_regex-vc100-mt-s-1_46_clean libboost_regex-vc100-mt-sgd-1_46_clean boost_regex-vc100-mt-gd-1_46_clean boost_regex-vc100-mt-1_46_clean libboost_regex-vc100-mt-1_46_clean libboost_regex-vc100-mt-gd-1_46_clean + +install : all + copy vc100\libboost_regex-vc100-mt-s-1_46.lib "$(MSVCDIR)\lib" + copy vc100\libboost_regex-vc100-mt-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc100\boost_regex-vc100-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc100\boost_regex-vc100-mt-gd-1_46.dll "$(MSVCDIR)\bin" + copy vc100\boost_regex-vc100-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc100\boost_regex-vc100-mt-1_46.dll "$(MSVCDIR)\bin" + copy vc100\libboost_regex-vc100-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc100\libboost_regex-vc100-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc100\libboost_regex-vc100-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + +main_dir : + @if not exist "vc100\$(NULL)" mkdir vc100 + + +######################################################## +# +# section for libboost_regex-vc100-mt-s-1_46.lib +# +######################################################## +vc100/libboost_regex-vc100-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/c_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/cregex.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/fileiter.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/icu.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/instances.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/posix_api.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/regex.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/regex_debug.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/static_mutex.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/usinstances.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/w32_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/wc_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/wide_posix_api.cpp + +vc100/libboost_regex-vc100-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/winstances.cpp + +libboost_regex-vc100-mt-s-1_46_dir : + @if not exist "vc100\libboost_regex-vc100-mt-s-1_46\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-s-1_46 + +libboost_regex-vc100-mt-s-1_46_clean : + del vc100\libboost_regex-vc100-mt-s-1_46\*.obj + del vc100\libboost_regex-vc100-mt-s-1_46\*.idb + del vc100\libboost_regex-vc100-mt-s-1_46\*.exp + del vc100\libboost_regex-vc100-mt-s-1_46\*.pch + +./vc100/libboost_regex-vc100-mt-s-1_46.lib : vc100/libboost_regex-vc100-mt-s-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/cregex.obj vc100/libboost_regex-vc100-mt-s-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-s-1_46/icu.obj vc100/libboost_regex-vc100-mt-s-1_46/instances.obj vc100/libboost_regex-vc100-mt-s-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-s-1_46/regex.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-s-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-s-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-s-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-s-1_46/winstances.obj + link -lib /nologo /out:vc100/libboost_regex-vc100-mt-s-1_46.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-s-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/cregex.obj vc100/libboost_regex-vc100-mt-s-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-s-1_46/icu.obj vc100/libboost_regex-vc100-mt-s-1_46/instances.obj vc100/libboost_regex-vc100-mt-s-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-s-1_46/regex.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-s-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-s-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-s-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-s-1_46/winstances.obj + +######################################################## +# +# section for libboost_regex-vc100-mt-sgd-1_46.lib +# +######################################################## +vc100/libboost_regex-vc100-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/cregex.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/fileiter.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/icu.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/instances.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/posix_api.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/regex.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/regex_debug.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/static_mutex.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/usinstances.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp + +vc100/libboost_regex-vc100-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/winstances.cpp + +libboost_regex-vc100-mt-sgd-1_46_dir : + @if not exist "vc100\libboost_regex-vc100-mt-sgd-1_46\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-sgd-1_46 + +libboost_regex-vc100-mt-sgd-1_46_clean : + del vc100\libboost_regex-vc100-mt-sgd-1_46\*.obj + del vc100\libboost_regex-vc100-mt-sgd-1_46\*.idb + del vc100\libboost_regex-vc100-mt-sgd-1_46\*.exp + del vc100\libboost_regex-vc100-mt-sgd-1_46\*.pch + +./vc100/libboost_regex-vc100-mt-sgd-1_46.lib : vc100/libboost_regex-vc100-mt-sgd-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/cregex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-sgd-1_46/icu.obj vc100/libboost_regex-vc100-mt-sgd-1_46/instances.obj vc100/libboost_regex-vc100-mt-sgd-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-sgd-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-sgd-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_46/winstances.obj + link -lib /nologo /out:vc100/libboost_regex-vc100-mt-sgd-1_46.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-sgd-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/cregex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-sgd-1_46/icu.obj vc100/libboost_regex-vc100-mt-sgd-1_46/instances.obj vc100/libboost_regex-vc100-mt-sgd-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-sgd-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-sgd-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_46/winstances.obj + +######################################################## +# +# section for boost_regex-vc100-mt-gd-1_46.lib +# +######################################################## +vc100/boost_regex-vc100-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/c_regex_traits.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/cregex.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/fileiter.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/icu.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/instances.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/posix_api.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/regex.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/regex_debug.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/static_mutex.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/usinstances.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/wide_posix_api.cpp + +vc100/boost_regex-vc100-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/winstances.cpp + +boost_regex-vc100-mt-gd-1_46_dir : + @if not exist "vc100\boost_regex-vc100-mt-gd-1_46\$(NULL)" mkdir vc100\boost_regex-vc100-mt-gd-1_46 + +boost_regex-vc100-mt-gd-1_46_clean : + del vc100\boost_regex-vc100-mt-gd-1_46\*.obj + del vc100\boost_regex-vc100-mt-gd-1_46\*.idb + del vc100\boost_regex-vc100-mt-gd-1_46\*.exp + del vc100\boost_regex-vc100-mt-gd-1_46\*.pch + +./vc100/boost_regex-vc100-mt-gd-1_46.lib : vc100/boost_regex-vc100-mt-gd-1_46/c_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/cregex.obj vc100/boost_regex-vc100-mt-gd-1_46/fileiter.obj vc100/boost_regex-vc100-mt-gd-1_46/icu.obj vc100/boost_regex-vc100-mt-gd-1_46/instances.obj vc100/boost_regex-vc100-mt-gd-1_46/posix_api.obj vc100/boost_regex-vc100-mt-gd-1_46/regex.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_debug.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-gd-1_46/static_mutex.obj vc100/boost_regex-vc100-mt-gd-1_46/usinstances.obj vc100/boost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/wide_posix_api.obj vc100/boost_regex-vc100-mt-gd-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc100/boost_regex-vc100-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc100/boost_regex-vc100-mt-gd-1_46.dll" /implib:"vc100/boost_regex-vc100-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc100/boost_regex-vc100-mt-gd-1_46/c_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/cregex.obj vc100/boost_regex-vc100-mt-gd-1_46/fileiter.obj vc100/boost_regex-vc100-mt-gd-1_46/icu.obj vc100/boost_regex-vc100-mt-gd-1_46/instances.obj vc100/boost_regex-vc100-mt-gd-1_46/posix_api.obj vc100/boost_regex-vc100-mt-gd-1_46/regex.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_debug.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-gd-1_46/static_mutex.obj vc100/boost_regex-vc100-mt-gd-1_46/usinstances.obj vc100/boost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/wide_posix_api.obj vc100/boost_regex-vc100-mt-gd-1_46/winstances.obj + +######################################################## +# +# section for boost_regex-vc100-mt-1_46.lib +# +######################################################## +vc100/boost_regex-vc100-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/c_regex_traits.cpp + +vc100/boost_regex-vc100-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/cpp_regex_traits.cpp + +vc100/boost_regex-vc100-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/cregex.cpp + +vc100/boost_regex-vc100-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/fileiter.cpp + +vc100/boost_regex-vc100-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/icu.cpp + +vc100/boost_regex-vc100-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/instances.cpp + +vc100/boost_regex-vc100-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/posix_api.cpp + +vc100/boost_regex-vc100-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/regex.cpp + +vc100/boost_regex-vc100-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/regex_debug.cpp + +vc100/boost_regex-vc100-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/regex_raw_buffer.cpp + +vc100/boost_regex-vc100-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/regex_traits_defaults.cpp + +vc100/boost_regex-vc100-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/static_mutex.cpp + +vc100/boost_regex-vc100-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/usinstances.cpp + +vc100/boost_regex-vc100-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/w32_regex_traits.cpp + +vc100/boost_regex-vc100-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/wc_regex_traits.cpp + +vc100/boost_regex-vc100-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/wide_posix_api.cpp + +vc100/boost_regex-vc100-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/winstances.cpp + +boost_regex-vc100-mt-1_46_dir : + @if not exist "vc100\boost_regex-vc100-mt-1_46\$(NULL)" mkdir vc100\boost_regex-vc100-mt-1_46 + +boost_regex-vc100-mt-1_46_clean : + del vc100\boost_regex-vc100-mt-1_46\*.obj + del vc100\boost_regex-vc100-mt-1_46\*.idb + del vc100\boost_regex-vc100-mt-1_46\*.exp + del vc100\boost_regex-vc100-mt-1_46\*.pch + +./vc100/boost_regex-vc100-mt-1_46.lib : vc100/boost_regex-vc100-mt-1_46/c_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/cregex.obj vc100/boost_regex-vc100-mt-1_46/fileiter.obj vc100/boost_regex-vc100-mt-1_46/icu.obj vc100/boost_regex-vc100-mt-1_46/instances.obj vc100/boost_regex-vc100-mt-1_46/posix_api.obj vc100/boost_regex-vc100-mt-1_46/regex.obj vc100/boost_regex-vc100-mt-1_46/regex_debug.obj vc100/boost_regex-vc100-mt-1_46/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-1_46/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-1_46/static_mutex.obj vc100/boost_regex-vc100-mt-1_46/usinstances.obj vc100/boost_regex-vc100-mt-1_46/w32_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/wc_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/wide_posix_api.obj vc100/boost_regex-vc100-mt-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc100/boost_regex-vc100-mt-1_46.pdb" /debug /machine:I386 /out:"vc100/boost_regex-vc100-mt-1_46.dll" /implib:"vc100/boost_regex-vc100-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc100/boost_regex-vc100-mt-1_46/c_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/cregex.obj vc100/boost_regex-vc100-mt-1_46/fileiter.obj vc100/boost_regex-vc100-mt-1_46/icu.obj vc100/boost_regex-vc100-mt-1_46/instances.obj vc100/boost_regex-vc100-mt-1_46/posix_api.obj vc100/boost_regex-vc100-mt-1_46/regex.obj vc100/boost_regex-vc100-mt-1_46/regex_debug.obj vc100/boost_regex-vc100-mt-1_46/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-1_46/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-1_46/static_mutex.obj vc100/boost_regex-vc100-mt-1_46/usinstances.obj vc100/boost_regex-vc100-mt-1_46/w32_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/wc_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/wide_posix_api.obj vc100/boost_regex-vc100-mt-1_46/winstances.obj + +######################################################## +# +# section for libboost_regex-vc100-mt-1_46.lib +# +######################################################## +vc100/libboost_regex-vc100-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/c_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/cpp_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/cregex.cpp + +vc100/libboost_regex-vc100-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/fileiter.cpp + +vc100/libboost_regex-vc100-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/icu.cpp + +vc100/libboost_regex-vc100-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/instances.cpp + +vc100/libboost_regex-vc100-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/posix_api.cpp + +vc100/libboost_regex-vc100-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/regex.cpp + +vc100/libboost_regex-vc100-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/regex_debug.cpp + +vc100/libboost_regex-vc100-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/regex_raw_buffer.cpp + +vc100/libboost_regex-vc100-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/regex_traits_defaults.cpp + +vc100/libboost_regex-vc100-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/static_mutex.cpp + +vc100/libboost_regex-vc100-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/usinstances.cpp + +vc100/libboost_regex-vc100-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/w32_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/wc_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/wide_posix_api.cpp + +vc100/libboost_regex-vc100-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/winstances.cpp + +libboost_regex-vc100-mt-1_46_dir : + @if not exist "vc100\libboost_regex-vc100-mt-1_46\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-1_46 + +libboost_regex-vc100-mt-1_46_clean : + del vc100\libboost_regex-vc100-mt-1_46\*.obj + del vc100\libboost_regex-vc100-mt-1_46\*.idb + del vc100\libboost_regex-vc100-mt-1_46\*.exp + del vc100\libboost_regex-vc100-mt-1_46\*.pch + +./vc100/libboost_regex-vc100-mt-1_46.lib : vc100/libboost_regex-vc100-mt-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/cregex.obj vc100/libboost_regex-vc100-mt-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-1_46/icu.obj vc100/libboost_regex-vc100-mt-1_46/instances.obj vc100/libboost_regex-vc100-mt-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-1_46/regex.obj vc100/libboost_regex-vc100-mt-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-1_46/winstances.obj + link -lib /nologo /out:vc100/libboost_regex-vc100-mt-1_46.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/cregex.obj vc100/libboost_regex-vc100-mt-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-1_46/icu.obj vc100/libboost_regex-vc100-mt-1_46/instances.obj vc100/libboost_regex-vc100-mt-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-1_46/regex.obj vc100/libboost_regex-vc100-mt-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-1_46/winstances.obj + +######################################################## +# +# section for libboost_regex-vc100-mt-gd-1_46.lib +# +######################################################## +vc100/libboost_regex-vc100-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/c_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/cregex.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/fileiter.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/icu.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/instances.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/posix_api.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/regex.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/regex_debug.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/static_mutex.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/usinstances.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/wide_posix_api.cpp + +vc100/libboost_regex-vc100-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/winstances.cpp + +libboost_regex-vc100-mt-gd-1_46_dir : + @if not exist "vc100\libboost_regex-vc100-mt-gd-1_46\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-gd-1_46 + +libboost_regex-vc100-mt-gd-1_46_clean : + del vc100\libboost_regex-vc100-mt-gd-1_46\*.obj + del vc100\libboost_regex-vc100-mt-gd-1_46\*.idb + del vc100\libboost_regex-vc100-mt-gd-1_46\*.exp + del vc100\libboost_regex-vc100-mt-gd-1_46\*.pch + +./vc100/libboost_regex-vc100-mt-gd-1_46.lib : vc100/libboost_regex-vc100-mt-gd-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/cregex.obj vc100/libboost_regex-vc100-mt-gd-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-gd-1_46/icu.obj vc100/libboost_regex-vc100-mt-gd-1_46/instances.obj vc100/libboost_regex-vc100-mt-gd-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-gd-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-gd-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_46/winstances.obj + link -lib /nologo /out:vc100/libboost_regex-vc100-mt-gd-1_46.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-gd-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/cregex.obj vc100/libboost_regex-vc100-mt-gd-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-gd-1_46/icu.obj vc100/libboost_regex-vc100-mt-gd-1_46/instances.obj vc100/libboost_regex-vc100-mt-gd-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-gd-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-gd-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_46/winstances.obj + diff --git a/build/vc6-stlport.mak b/build/vc6-stlport.mak index 5957ef60..28110ffe 100644 --- a/build/vc6-stlport.mak +++ b/build/vc6-stlport.mak @@ -62,22 +62,22 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc6-mt-sp-1_45_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_45.lib boost_regex-vc6-mt-p-1_45_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_45.lib libboost_regex-vc6-mt-p-1_45_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_45.lib boost_regex-vc6-mt-gdp-1_45_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_45.lib libboost_regex-vc6-mt-sgdp-1_45_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.lib libboost_regex-vc6-mt-gdp-1_45_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45.lib +all : main_dir libboost_regex-vc6-mt-sp-1_46_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_46.lib boost_regex-vc6-mt-p-1_46_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_46.lib libboost_regex-vc6-mt-p-1_46_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_46.lib boost_regex-vc6-mt-gdp-1_46_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_46.lib libboost_regex-vc6-mt-sgdp-1_46_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.lib libboost_regex-vc6-mt-gdp-1_46_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46.lib -clean : libboost_regex-vc6-mt-sp-1_45_clean boost_regex-vc6-mt-p-1_45_clean libboost_regex-vc6-mt-p-1_45_clean boost_regex-vc6-mt-gdp-1_45_clean libboost_regex-vc6-mt-sgdp-1_45_clean libboost_regex-vc6-mt-gdp-1_45_clean +clean : libboost_regex-vc6-mt-sp-1_46_clean boost_regex-vc6-mt-p-1_46_clean libboost_regex-vc6-mt-p-1_46_clean boost_regex-vc6-mt-gdp-1_46_clean libboost_regex-vc6-mt-sgdp-1_46_clean libboost_regex-vc6-mt-gdp-1_46_clean install : stlport_check all - copy vc6-stlport\libboost_regex-vc6-mt-sp-1_45.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_45.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_45.dll "$(MSVCDIR)\bin" - copy vc6-stlport\libboost_regex-vc6-mt-p-1_45.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_45.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_45.dll "$(MSVCDIR)\bin" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_45.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_45.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_45.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_45.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_45.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sp-1_46.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_46.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_46.dll "$(MSVCDIR)\bin" + copy vc6-stlport\libboost_regex-vc6-mt-p-1_46.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_46.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_46.dll "$(MSVCDIR)\bin" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_46.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6-stlport\$(NULL)" mkdir vc6-stlport @@ -88,409 +88,409 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc6-mt-sp-1_45.lib +# section for libboost_regex-vc6-mt-sp-1_46.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_45.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sp-1_45_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_45\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_45 +libboost_regex-vc6-mt-sp-1_46_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_46\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_46 -libboost_regex-vc6-mt-sp-1_45_clean : - del vc6-stlport\libboost_regex-vc6-mt-sp-1_45\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sp-1_45\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sp-1_45\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sp-1_45\*.pch +libboost_regex-vc6-mt-sp-1_46_clean : + del vc6-stlport\libboost_regex-vc6-mt-sp-1_46\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sp-1_46\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sp-1_46\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sp-1_46\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sp-1_45.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_45/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_45.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_45/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_45/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sp-1_46.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_46.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-p-1_45.lib +# section for boost_regex-vc6-mt-p-1_46.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-p-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_45.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/winstances.cpp -boost_regex-vc6-mt-p-1_45_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_45\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_45 +boost_regex-vc6-mt-p-1_46_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_46\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_46 -boost_regex-vc6-mt-p-1_45_clean : - del vc6-stlport\boost_regex-vc6-mt-p-1_45\*.obj - del vc6-stlport\boost_regex-vc6-mt-p-1_45\*.idb - del vc6-stlport\boost_regex-vc6-mt-p-1_45\*.exp - del vc6-stlport\boost_regex-vc6-mt-p-1_45\*.pch +boost_regex-vc6-mt-p-1_46_clean : + del vc6-stlport\boost_regex-vc6-mt-p-1_46\*.obj + del vc6-stlport\boost_regex-vc6-mt-p-1_46\*.idb + del vc6-stlport\boost_regex-vc6-mt-p-1_46\*.exp + del vc6-stlport\boost_regex-vc6-mt-p-1_46\*.pch -./vc6-stlport/boost_regex-vc6-mt-p-1_45.lib : vc6-stlport/boost_regex-vc6-mt-p-1_45/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6-stlport/boost_regex-vc6-mt-p-1_45.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_45.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_45/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_45/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-p-1_46.lib : vc6-stlport/boost_regex-vc6-mt-p-1_46/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6-stlport/boost_regex-vc6-mt-p-1_46.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_46.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_46/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-p-1_45.lib +# section for libboost_regex-vc6-mt-p-1_46.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-p-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_45.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-p-1_45_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_45\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_45 +libboost_regex-vc6-mt-p-1_46_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_46\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_46 -libboost_regex-vc6-mt-p-1_45_clean : - del vc6-stlport\libboost_regex-vc6-mt-p-1_45\*.obj - del vc6-stlport\libboost_regex-vc6-mt-p-1_45\*.idb - del vc6-stlport\libboost_regex-vc6-mt-p-1_45\*.exp - del vc6-stlport\libboost_regex-vc6-mt-p-1_45\*.pch +libboost_regex-vc6-mt-p-1_46_clean : + del vc6-stlport\libboost_regex-vc6-mt-p-1_46\*.obj + del vc6-stlport\libboost_regex-vc6-mt-p-1_46\*.idb + del vc6-stlport\libboost_regex-vc6-mt-p-1_46\*.exp + del vc6-stlport\libboost_regex-vc6-mt-p-1_46\*.pch -./vc6-stlport/libboost_regex-vc6-mt-p-1_45.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_45/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_45.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_45/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_45/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-p-1_46.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_46.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gdp-1_45.lib +# section for boost_regex-vc6-mt-gdp-1_46.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gdp-1_45_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_45\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_45 +boost_regex-vc6-mt-gdp-1_46_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_46\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_46 -boost_regex-vc6-mt-gdp-1_45_clean : - del vc6-stlport\boost_regex-vc6-mt-gdp-1_45\*.obj - del vc6-stlport\boost_regex-vc6-mt-gdp-1_45\*.idb - del vc6-stlport\boost_regex-vc6-mt-gdp-1_45\*.exp - del vc6-stlport\boost_regex-vc6-mt-gdp-1_45\*.pch +boost_regex-vc6-mt-gdp-1_46_clean : + del vc6-stlport\boost_regex-vc6-mt-gdp-1_46\*.obj + del vc6-stlport\boost_regex-vc6-mt-gdp-1_46\*.idb + del vc6-stlport\boost_regex-vc6-mt-gdp-1_46\*.exp + del vc6-stlport\boost_regex-vc6-mt-gdp-1_46\*.pch -./vc6-stlport/boost_regex-vc6-mt-gdp-1_45.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_45/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6-stlport/boost_regex-vc6-mt-gdp-1_45.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_45.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_45/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_45/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-gdp-1_46.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_46.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgdp-1_45.lib +# section for libboost_regex-vc6-mt-sgdp-1_46.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgdp-1_45_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_45\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_45 +libboost_regex-vc6-mt-sgdp-1_46_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46 -libboost_regex-vc6-mt-sgdp-1_45_clean : - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_45\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_45\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_45\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_45\*.pch +libboost_regex-vc6-mt-sgdp-1_46_clean : + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_45/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gdp-1_45.lib +# section for libboost_regex-vc6-mt-gdp-1_46.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_45.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gdp-1_45_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_45\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_45 +libboost_regex-vc6-mt-gdp-1_46_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_46 -libboost_regex-vc6-mt-gdp-1_45_clean : - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_45\*.obj - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_45\*.idb - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_45\*.exp - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_45\*.pch +libboost_regex-vc6-mt-gdp-1_46_clean : + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\*.obj + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\*.idb + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\*.exp + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\*.pch -./vc6-stlport/libboost_regex-vc6-mt-gdp-1_45.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_45.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_45/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_46.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/winstances.obj diff --git a/build/vc6.mak b/build/vc6.mak index 67607d48..c343901b 100644 --- a/build/vc6.mak +++ b/build/vc6.mak @@ -3,7 +3,7 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt. # -# auto generated makefile for VC6 compiler +# auto generated makefile for MSVC compiler # # usage: # make @@ -62,25 +62,25 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc6-s-1_45_dir ./vc6/libboost_regex-vc6-s-1_45.lib libboost_regex-vc6-mt-s-1_45_dir ./vc6/libboost_regex-vc6-mt-s-1_45.lib libboost_regex-vc6-sgd-1_45_dir ./vc6/libboost_regex-vc6-sgd-1_45.lib libboost_regex-vc6-mt-sgd-1_45_dir ./vc6/libboost_regex-vc6-mt-sgd-1_45.lib boost_regex-vc6-mt-gd-1_45_dir ./vc6/boost_regex-vc6-mt-gd-1_45.lib boost_regex-vc6-mt-1_45_dir ./vc6/boost_regex-vc6-mt-1_45.lib libboost_regex-vc6-mt-1_45_dir ./vc6/libboost_regex-vc6-mt-1_45.lib libboost_regex-vc6-mt-gd-1_45_dir ./vc6/libboost_regex-vc6-mt-gd-1_45.lib +all : main_dir libboost_regex-vc6-s-1_46_dir ./vc6/libboost_regex-vc6-s-1_46.lib libboost_regex-vc6-mt-s-1_46_dir ./vc6/libboost_regex-vc6-mt-s-1_46.lib libboost_regex-vc6-sgd-1_46_dir ./vc6/libboost_regex-vc6-sgd-1_46.lib libboost_regex-vc6-mt-sgd-1_46_dir ./vc6/libboost_regex-vc6-mt-sgd-1_46.lib boost_regex-vc6-mt-gd-1_46_dir ./vc6/boost_regex-vc6-mt-gd-1_46.lib boost_regex-vc6-mt-1_46_dir ./vc6/boost_regex-vc6-mt-1_46.lib libboost_regex-vc6-mt-1_46_dir ./vc6/libboost_regex-vc6-mt-1_46.lib libboost_regex-vc6-mt-gd-1_46_dir ./vc6/libboost_regex-vc6-mt-gd-1_46.lib -clean : libboost_regex-vc6-s-1_45_clean libboost_regex-vc6-mt-s-1_45_clean libboost_regex-vc6-sgd-1_45_clean libboost_regex-vc6-mt-sgd-1_45_clean boost_regex-vc6-mt-gd-1_45_clean boost_regex-vc6-mt-1_45_clean libboost_regex-vc6-mt-1_45_clean libboost_regex-vc6-mt-gd-1_45_clean +clean : libboost_regex-vc6-s-1_46_clean libboost_regex-vc6-mt-s-1_46_clean libboost_regex-vc6-sgd-1_46_clean libboost_regex-vc6-mt-sgd-1_46_clean boost_regex-vc6-mt-gd-1_46_clean boost_regex-vc6-mt-1_46_clean libboost_regex-vc6-mt-1_46_clean libboost_regex-vc6-mt-gd-1_46_clean install : all - copy vc6\libboost_regex-vc6-s-1_45.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-s-1_45.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_45.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_45.pdb "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_45.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_45.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_45.dll "$(MSVCDIR)\bin" - copy vc6\boost_regex-vc6-mt-gd-1_45.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_45.dll "$(MSVCDIR)\bin" - copy vc6\libboost_regex-vc6-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_45.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-s-1_46.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-s-1_46.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_46.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_46.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_46.dll "$(MSVCDIR)\bin" + copy vc6\boost_regex-vc6-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_46.dll "$(MSVCDIR)\bin" + copy vc6\libboost_regex-vc6-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_46.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6\$(NULL)" mkdir vc6 @@ -88,545 +88,545 @@ main_dir : ######################################################## # -# section for libboost_regex-vc6-s-1_45.lib +# section for libboost_regex-vc6-s-1_46.lib # ######################################################## -vc6/libboost_regex-vc6-s-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-s-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-s-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-s-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-s-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-s-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-s-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-s-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-s-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-s-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-s-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-s-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-s-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_45/ -Fdvc6/libboost_regex-vc6-s-1_45.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-s-1_45_dir : - @if not exist "vc6\libboost_regex-vc6-s-1_45\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_45 +libboost_regex-vc6-s-1_46_dir : + @if not exist "vc6\libboost_regex-vc6-s-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_46 -libboost_regex-vc6-s-1_45_clean : - del vc6\libboost_regex-vc6-s-1_45\*.obj - del vc6\libboost_regex-vc6-s-1_45\*.idb - del vc6\libboost_regex-vc6-s-1_45\*.exp - del vc6\libboost_regex-vc6-s-1_45\*.pch +libboost_regex-vc6-s-1_46_clean : + del vc6\libboost_regex-vc6-s-1_46\*.obj + del vc6\libboost_regex-vc6-s-1_46\*.idb + del vc6\libboost_regex-vc6-s-1_46\*.exp + del vc6\libboost_regex-vc6-s-1_46\*.pch -./vc6/libboost_regex-vc6-s-1_45.lib : vc6/libboost_regex-vc6-s-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_45/cregex.obj vc6/libboost_regex-vc6-s-1_45/fileiter.obj vc6/libboost_regex-vc6-s-1_45/icu.obj vc6/libboost_regex-vc6-s-1_45/instances.obj vc6/libboost_regex-vc6-s-1_45/posix_api.obj vc6/libboost_regex-vc6-s-1_45/regex.obj vc6/libboost_regex-vc6-s-1_45/regex_debug.obj vc6/libboost_regex-vc6-s-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_45/static_mutex.obj vc6/libboost_regex-vc6-s-1_45/usinstances.obj vc6/libboost_regex-vc6-s-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_45/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_45.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_45/cregex.obj vc6/libboost_regex-vc6-s-1_45/fileiter.obj vc6/libboost_regex-vc6-s-1_45/icu.obj vc6/libboost_regex-vc6-s-1_45/instances.obj vc6/libboost_regex-vc6-s-1_45/posix_api.obj vc6/libboost_regex-vc6-s-1_45/regex.obj vc6/libboost_regex-vc6-s-1_45/regex_debug.obj vc6/libboost_regex-vc6-s-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_45/static_mutex.obj vc6/libboost_regex-vc6-s-1_45/usinstances.obj vc6/libboost_regex-vc6-s-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_45/winstances.obj +./vc6/libboost_regex-vc6-s-1_46.lib : vc6/libboost_regex-vc6-s-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/cregex.obj vc6/libboost_regex-vc6-s-1_46/fileiter.obj vc6/libboost_regex-vc6-s-1_46/icu.obj vc6/libboost_regex-vc6-s-1_46/instances.obj vc6/libboost_regex-vc6-s-1_46/posix_api.obj vc6/libboost_regex-vc6-s-1_46/regex.obj vc6/libboost_regex-vc6-s-1_46/regex_debug.obj vc6/libboost_regex-vc6-s-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_46/static_mutex.obj vc6/libboost_regex-vc6-s-1_46/usinstances.obj vc6/libboost_regex-vc6-s-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_46/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/cregex.obj vc6/libboost_regex-vc6-s-1_46/fileiter.obj vc6/libboost_regex-vc6-s-1_46/icu.obj vc6/libboost_regex-vc6-s-1_46/instances.obj vc6/libboost_regex-vc6-s-1_46/posix_api.obj vc6/libboost_regex-vc6-s-1_46/regex.obj vc6/libboost_regex-vc6-s-1_46/regex_debug.obj vc6/libboost_regex-vc6-s-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_46/static_mutex.obj vc6/libboost_regex-vc6-s-1_46/usinstances.obj vc6/libboost_regex-vc6-s-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-s-1_45.lib +# section for libboost_regex-vc6-mt-s-1_46.lib # ######################################################## -vc6/libboost_regex-vc6-mt-s-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-s-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-s-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-s-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-s-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-s-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-s-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-s-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-s-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-s-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-s-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_45/ -Fdvc6/libboost_regex-vc6-mt-s-1_45.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-s-1_45_dir : - @if not exist "vc6\libboost_regex-vc6-mt-s-1_45\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_45 +libboost_regex-vc6-mt-s-1_46_dir : + @if not exist "vc6\libboost_regex-vc6-mt-s-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_46 -libboost_regex-vc6-mt-s-1_45_clean : - del vc6\libboost_regex-vc6-mt-s-1_45\*.obj - del vc6\libboost_regex-vc6-mt-s-1_45\*.idb - del vc6\libboost_regex-vc6-mt-s-1_45\*.exp - del vc6\libboost_regex-vc6-mt-s-1_45\*.pch +libboost_regex-vc6-mt-s-1_46_clean : + del vc6\libboost_regex-vc6-mt-s-1_46\*.obj + del vc6\libboost_regex-vc6-mt-s-1_46\*.idb + del vc6\libboost_regex-vc6-mt-s-1_46\*.exp + del vc6\libboost_regex-vc6-mt-s-1_46\*.pch -./vc6/libboost_regex-vc6-mt-s-1_45.lib : vc6/libboost_regex-vc6-mt-s-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_45/cregex.obj vc6/libboost_regex-vc6-mt-s-1_45/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_45/icu.obj vc6/libboost_regex-vc6-mt-s-1_45/instances.obj vc6/libboost_regex-vc6-mt-s-1_45/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_45/regex.obj vc6/libboost_regex-vc6-mt-s-1_45/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_45/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_45/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_45/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_45.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_45/cregex.obj vc6/libboost_regex-vc6-mt-s-1_45/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_45/icu.obj vc6/libboost_regex-vc6-mt-s-1_45/instances.obj vc6/libboost_regex-vc6-mt-s-1_45/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_45/regex.obj vc6/libboost_regex-vc6-mt-s-1_45/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_45/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_45/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_45/winstances.obj +./vc6/libboost_regex-vc6-mt-s-1_46.lib : vc6/libboost_regex-vc6-mt-s-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/cregex.obj vc6/libboost_regex-vc6-mt-s-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_46/icu.obj vc6/libboost_regex-vc6-mt-s-1_46/instances.obj vc6/libboost_regex-vc6-mt-s-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_46/regex.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_46/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/cregex.obj vc6/libboost_regex-vc6-mt-s-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_46/icu.obj vc6/libboost_regex-vc6-mt-s-1_46/instances.obj vc6/libboost_regex-vc6-mt-s-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_46/regex.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc6-sgd-1_45.lib +# section for libboost_regex-vc6-sgd-1_46.lib # ######################################################## -vc6/libboost_regex-vc6-sgd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-sgd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-sgd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-sgd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-sgd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-sgd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-sgd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-sgd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-sgd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-sgd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-sgd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_45/ -Fdvc6/libboost_regex-vc6-sgd-1_45.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-sgd-1_45_dir : - @if not exist "vc6\libboost_regex-vc6-sgd-1_45\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_45 +libboost_regex-vc6-sgd-1_46_dir : + @if not exist "vc6\libboost_regex-vc6-sgd-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_46 -libboost_regex-vc6-sgd-1_45_clean : - del vc6\libboost_regex-vc6-sgd-1_45\*.obj - del vc6\libboost_regex-vc6-sgd-1_45\*.idb - del vc6\libboost_regex-vc6-sgd-1_45\*.exp - del vc6\libboost_regex-vc6-sgd-1_45\*.pch +libboost_regex-vc6-sgd-1_46_clean : + del vc6\libboost_regex-vc6-sgd-1_46\*.obj + del vc6\libboost_regex-vc6-sgd-1_46\*.idb + del vc6\libboost_regex-vc6-sgd-1_46\*.exp + del vc6\libboost_regex-vc6-sgd-1_46\*.pch -./vc6/libboost_regex-vc6-sgd-1_45.lib : vc6/libboost_regex-vc6-sgd-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_45/cregex.obj vc6/libboost_regex-vc6-sgd-1_45/fileiter.obj vc6/libboost_regex-vc6-sgd-1_45/icu.obj vc6/libboost_regex-vc6-sgd-1_45/instances.obj vc6/libboost_regex-vc6-sgd-1_45/posix_api.obj vc6/libboost_regex-vc6-sgd-1_45/regex.obj vc6/libboost_regex-vc6-sgd-1_45/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_45/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_45/usinstances.obj vc6/libboost_regex-vc6-sgd-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_45/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_45.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_45/cregex.obj vc6/libboost_regex-vc6-sgd-1_45/fileiter.obj vc6/libboost_regex-vc6-sgd-1_45/icu.obj vc6/libboost_regex-vc6-sgd-1_45/instances.obj vc6/libboost_regex-vc6-sgd-1_45/posix_api.obj vc6/libboost_regex-vc6-sgd-1_45/regex.obj vc6/libboost_regex-vc6-sgd-1_45/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_45/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_45/usinstances.obj vc6/libboost_regex-vc6-sgd-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_45/winstances.obj +./vc6/libboost_regex-vc6-sgd-1_46.lib : vc6/libboost_regex-vc6-sgd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/cregex.obj vc6/libboost_regex-vc6-sgd-1_46/fileiter.obj vc6/libboost_regex-vc6-sgd-1_46/icu.obj vc6/libboost_regex-vc6-sgd-1_46/instances.obj vc6/libboost_regex-vc6-sgd-1_46/posix_api.obj vc6/libboost_regex-vc6-sgd-1_46/regex.obj vc6/libboost_regex-vc6-sgd-1_46/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_46/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_46/usinstances.obj vc6/libboost_regex-vc6-sgd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_46/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/cregex.obj vc6/libboost_regex-vc6-sgd-1_46/fileiter.obj vc6/libboost_regex-vc6-sgd-1_46/icu.obj vc6/libboost_regex-vc6-sgd-1_46/instances.obj vc6/libboost_regex-vc6-sgd-1_46/posix_api.obj vc6/libboost_regex-vc6-sgd-1_46/regex.obj vc6/libboost_regex-vc6-sgd-1_46/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_46/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_46/usinstances.obj vc6/libboost_regex-vc6-sgd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgd-1_45.lib +# section for libboost_regex-vc6-mt-sgd-1_46.lib # ######################################################## -vc6/libboost_regex-vc6-mt-sgd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_45/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_45.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgd-1_45_dir : - @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_45\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_45 +libboost_regex-vc6-mt-sgd-1_46_dir : + @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_46 -libboost_regex-vc6-mt-sgd-1_45_clean : - del vc6\libboost_regex-vc6-mt-sgd-1_45\*.obj - del vc6\libboost_regex-vc6-mt-sgd-1_45\*.idb - del vc6\libboost_regex-vc6-mt-sgd-1_45\*.exp - del vc6\libboost_regex-vc6-mt-sgd-1_45\*.pch +libboost_regex-vc6-mt-sgd-1_46_clean : + del vc6\libboost_regex-vc6-mt-sgd-1_46\*.obj + del vc6\libboost_regex-vc6-mt-sgd-1_46\*.idb + del vc6\libboost_regex-vc6-mt-sgd-1_46\*.exp + del vc6\libboost_regex-vc6-mt-sgd-1_46\*.pch -./vc6/libboost_regex-vc6-mt-sgd-1_45.lib : vc6/libboost_regex-vc6-mt-sgd-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_45/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_45/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_45/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_45/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_45/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_45/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_45/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_45/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_45/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_45/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_45.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_45/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_45/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_45/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_45/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_45/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_45/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_45/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_45/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_45/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_45/winstances.obj +./vc6/libboost_regex-vc6-mt-sgd-1_46.lib : vc6/libboost_regex-vc6-mt-sgd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_46/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_46/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_46/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_46/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_46/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gd-1_45.lib +# section for boost_regex-vc6-mt-gd-1_46.lib # ######################################################## -vc6/boost_regex-vc6-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_45/ -Fdvc6/boost_regex-vc6-mt-gd-1_45.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gd-1_45_dir : - @if not exist "vc6\boost_regex-vc6-mt-gd-1_45\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_45 +boost_regex-vc6-mt-gd-1_46_dir : + @if not exist "vc6\boost_regex-vc6-mt-gd-1_46\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_46 -boost_regex-vc6-mt-gd-1_45_clean : - del vc6\boost_regex-vc6-mt-gd-1_45\*.obj - del vc6\boost_regex-vc6-mt-gd-1_45\*.idb - del vc6\boost_regex-vc6-mt-gd-1_45\*.exp - del vc6\boost_regex-vc6-mt-gd-1_45\*.pch +boost_regex-vc6-mt-gd-1_46_clean : + del vc6\boost_regex-vc6-mt-gd-1_46\*.obj + del vc6\boost_regex-vc6-mt-gd-1_46\*.idb + del vc6\boost_regex-vc6-mt-gd-1_46\*.exp + del vc6\boost_regex-vc6-mt-gd-1_46\*.pch -./vc6/boost_regex-vc6-mt-gd-1_45.lib : vc6/boost_regex-vc6-mt-gd-1_45/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_45/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_45/cregex.obj vc6/boost_regex-vc6-mt-gd-1_45/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_45/icu.obj vc6/boost_regex-vc6-mt-gd-1_45/instances.obj vc6/boost_regex-vc6-mt-gd-1_45/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_45/regex.obj vc6/boost_regex-vc6-mt-gd-1_45/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_45/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_45/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_45/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_45/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_45/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_45/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_45/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6/boost_regex-vc6-mt-gd-1_45.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_45.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_45/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_45/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_45/cregex.obj vc6/boost_regex-vc6-mt-gd-1_45/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_45/icu.obj vc6/boost_regex-vc6-mt-gd-1_45/instances.obj vc6/boost_regex-vc6-mt-gd-1_45/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_45/regex.obj vc6/boost_regex-vc6-mt-gd-1_45/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_45/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_45/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_45/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_45/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_45/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_45/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_45/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_45/winstances.obj +./vc6/boost_regex-vc6-mt-gd-1_46.lib : vc6/boost_regex-vc6-mt-gd-1_46/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/cregex.obj vc6/boost_regex-vc6-mt-gd-1_46/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_46/icu.obj vc6/boost_regex-vc6-mt-gd-1_46/instances.obj vc6/boost_regex-vc6-mt-gd-1_46/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_46/regex.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_46/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_46/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6/boost_regex-vc6-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_46.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_46/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/cregex.obj vc6/boost_regex-vc6-mt-gd-1_46/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_46/icu.obj vc6/boost_regex-vc6-mt-gd-1_46/instances.obj vc6/boost_regex-vc6-mt-gd-1_46/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_46/regex.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_46/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_46/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-1_45.lib +# section for boost_regex-vc6-mt-1_46.lib # ######################################################## -vc6/boost_regex-vc6-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_45/ -Fdvc6/boost_regex-vc6-mt-1_45.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/winstances.cpp -boost_regex-vc6-mt-1_45_dir : - @if not exist "vc6\boost_regex-vc6-mt-1_45\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_45 +boost_regex-vc6-mt-1_46_dir : + @if not exist "vc6\boost_regex-vc6-mt-1_46\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_46 -boost_regex-vc6-mt-1_45_clean : - del vc6\boost_regex-vc6-mt-1_45\*.obj - del vc6\boost_regex-vc6-mt-1_45\*.idb - del vc6\boost_regex-vc6-mt-1_45\*.exp - del vc6\boost_regex-vc6-mt-1_45\*.pch +boost_regex-vc6-mt-1_46_clean : + del vc6\boost_regex-vc6-mt-1_46\*.obj + del vc6\boost_regex-vc6-mt-1_46\*.idb + del vc6\boost_regex-vc6-mt-1_46\*.exp + del vc6\boost_regex-vc6-mt-1_46\*.pch -./vc6/boost_regex-vc6-mt-1_45.lib : vc6/boost_regex-vc6-mt-1_45/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_45/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_45/cregex.obj vc6/boost_regex-vc6-mt-1_45/fileiter.obj vc6/boost_regex-vc6-mt-1_45/icu.obj vc6/boost_regex-vc6-mt-1_45/instances.obj vc6/boost_regex-vc6-mt-1_45/posix_api.obj vc6/boost_regex-vc6-mt-1_45/regex.obj vc6/boost_regex-vc6-mt-1_45/regex_debug.obj vc6/boost_regex-vc6-mt-1_45/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_45/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_45/static_mutex.obj vc6/boost_regex-vc6-mt-1_45/usinstances.obj vc6/boost_regex-vc6-mt-1_45/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_45/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_45/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6/boost_regex-vc6-mt-1_45.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_45.dll" /implib:"vc6/boost_regex-vc6-mt-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_45/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_45/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_45/cregex.obj vc6/boost_regex-vc6-mt-1_45/fileiter.obj vc6/boost_regex-vc6-mt-1_45/icu.obj vc6/boost_regex-vc6-mt-1_45/instances.obj vc6/boost_regex-vc6-mt-1_45/posix_api.obj vc6/boost_regex-vc6-mt-1_45/regex.obj vc6/boost_regex-vc6-mt-1_45/regex_debug.obj vc6/boost_regex-vc6-mt-1_45/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_45/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_45/static_mutex.obj vc6/boost_regex-vc6-mt-1_45/usinstances.obj vc6/boost_regex-vc6-mt-1_45/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_45/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_45/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_45/winstances.obj +./vc6/boost_regex-vc6-mt-1_46.lib : vc6/boost_regex-vc6-mt-1_46/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/cregex.obj vc6/boost_regex-vc6-mt-1_46/fileiter.obj vc6/boost_regex-vc6-mt-1_46/icu.obj vc6/boost_regex-vc6-mt-1_46/instances.obj vc6/boost_regex-vc6-mt-1_46/posix_api.obj vc6/boost_regex-vc6-mt-1_46/regex.obj vc6/boost_regex-vc6-mt-1_46/regex_debug.obj vc6/boost_regex-vc6-mt-1_46/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_46/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_46/static_mutex.obj vc6/boost_regex-vc6-mt-1_46/usinstances.obj vc6/boost_regex-vc6-mt-1_46/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6/boost_regex-vc6-mt-1_46.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_46.dll" /implib:"vc6/boost_regex-vc6-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_46/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/cregex.obj vc6/boost_regex-vc6-mt-1_46/fileiter.obj vc6/boost_regex-vc6-mt-1_46/icu.obj vc6/boost_regex-vc6-mt-1_46/instances.obj vc6/boost_regex-vc6-mt-1_46/posix_api.obj vc6/boost_regex-vc6-mt-1_46/regex.obj vc6/boost_regex-vc6-mt-1_46/regex_debug.obj vc6/boost_regex-vc6-mt-1_46/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_46/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_46/static_mutex.obj vc6/boost_regex-vc6-mt-1_46/usinstances.obj vc6/boost_regex-vc6-mt-1_46/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-1_45.lib +# section for libboost_regex-vc6-mt-1_46.lib # ######################################################## -vc6/libboost_regex-vc6-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_45/ -Fdvc6/libboost_regex-vc6-mt-1_45.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-1_45_dir : - @if not exist "vc6\libboost_regex-vc6-mt-1_45\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_45 +libboost_regex-vc6-mt-1_46_dir : + @if not exist "vc6\libboost_regex-vc6-mt-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_46 -libboost_regex-vc6-mt-1_45_clean : - del vc6\libboost_regex-vc6-mt-1_45\*.obj - del vc6\libboost_regex-vc6-mt-1_45\*.idb - del vc6\libboost_regex-vc6-mt-1_45\*.exp - del vc6\libboost_regex-vc6-mt-1_45\*.pch +libboost_regex-vc6-mt-1_46_clean : + del vc6\libboost_regex-vc6-mt-1_46\*.obj + del vc6\libboost_regex-vc6-mt-1_46\*.idb + del vc6\libboost_regex-vc6-mt-1_46\*.exp + del vc6\libboost_regex-vc6-mt-1_46\*.pch -./vc6/libboost_regex-vc6-mt-1_45.lib : vc6/libboost_regex-vc6-mt-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_45/cregex.obj vc6/libboost_regex-vc6-mt-1_45/fileiter.obj vc6/libboost_regex-vc6-mt-1_45/icu.obj vc6/libboost_regex-vc6-mt-1_45/instances.obj vc6/libboost_regex-vc6-mt-1_45/posix_api.obj vc6/libboost_regex-vc6-mt-1_45/regex.obj vc6/libboost_regex-vc6-mt-1_45/regex_debug.obj vc6/libboost_regex-vc6-mt-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_45/static_mutex.obj vc6/libboost_regex-vc6-mt-1_45/usinstances.obj vc6/libboost_regex-vc6-mt-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_45/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_45.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_45/cregex.obj vc6/libboost_regex-vc6-mt-1_45/fileiter.obj vc6/libboost_regex-vc6-mt-1_45/icu.obj vc6/libboost_regex-vc6-mt-1_45/instances.obj vc6/libboost_regex-vc6-mt-1_45/posix_api.obj vc6/libboost_regex-vc6-mt-1_45/regex.obj vc6/libboost_regex-vc6-mt-1_45/regex_debug.obj vc6/libboost_regex-vc6-mt-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_45/static_mutex.obj vc6/libboost_regex-vc6-mt-1_45/usinstances.obj vc6/libboost_regex-vc6-mt-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_45/winstances.obj +./vc6/libboost_regex-vc6-mt-1_46.lib : vc6/libboost_regex-vc6-mt-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/cregex.obj vc6/libboost_regex-vc6-mt-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-1_46/icu.obj vc6/libboost_regex-vc6-mt-1_46/instances.obj vc6/libboost_regex-vc6-mt-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-1_46/regex.obj vc6/libboost_regex-vc6-mt-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_46/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/cregex.obj vc6/libboost_regex-vc6-mt-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-1_46/icu.obj vc6/libboost_regex-vc6-mt-1_46/instances.obj vc6/libboost_regex-vc6-mt-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-1_46/regex.obj vc6/libboost_regex-vc6-mt-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gd-1_45.lib +# section for libboost_regex-vc6-mt-gd-1_46.lib # ######################################################## -vc6/libboost_regex-vc6-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_45/ -Fdvc6/libboost_regex-vc6-mt-gd-1_45.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gd-1_45_dir : - @if not exist "vc6\libboost_regex-vc6-mt-gd-1_45\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_45 +libboost_regex-vc6-mt-gd-1_46_dir : + @if not exist "vc6\libboost_regex-vc6-mt-gd-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_46 -libboost_regex-vc6-mt-gd-1_45_clean : - del vc6\libboost_regex-vc6-mt-gd-1_45\*.obj - del vc6\libboost_regex-vc6-mt-gd-1_45\*.idb - del vc6\libboost_regex-vc6-mt-gd-1_45\*.exp - del vc6\libboost_regex-vc6-mt-gd-1_45\*.pch +libboost_regex-vc6-mt-gd-1_46_clean : + del vc6\libboost_regex-vc6-mt-gd-1_46\*.obj + del vc6\libboost_regex-vc6-mt-gd-1_46\*.idb + del vc6\libboost_regex-vc6-mt-gd-1_46\*.exp + del vc6\libboost_regex-vc6-mt-gd-1_46\*.pch -./vc6/libboost_regex-vc6-mt-gd-1_45.lib : vc6/libboost_regex-vc6-mt-gd-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_45/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_45/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_45/icu.obj vc6/libboost_regex-vc6-mt-gd-1_45/instances.obj vc6/libboost_regex-vc6-mt-gd-1_45/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_45/regex.obj vc6/libboost_regex-vc6-mt-gd-1_45/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_45/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_45/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_45/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_45.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_45/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_45/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_45/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_45/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_45/icu.obj vc6/libboost_regex-vc6-mt-gd-1_45/instances.obj vc6/libboost_regex-vc6-mt-gd-1_45/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_45/regex.obj vc6/libboost_regex-vc6-mt-gd-1_45/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_45/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_45/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_45/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_45/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_45/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_45/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_45/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_45/winstances.obj +./vc6/libboost_regex-vc6-mt-gd-1_46.lib : vc6/libboost_regex-vc6-mt-gd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_46/icu.obj vc6/libboost_regex-vc6-mt-gd-1_46/instances.obj vc6/libboost_regex-vc6-mt-gd-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_46/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_46/icu.obj vc6/libboost_regex-vc6-mt-gd-1_46/instances.obj vc6/libboost_regex-vc6-mt-gd-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_46/winstances.obj diff --git a/build/vc7-stlport.mak b/build/vc7-stlport.mak index a37f004f..ac1e7a54 100644 --- a/build/vc7-stlport.mak +++ b/build/vc7-stlport.mak @@ -62,22 +62,22 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc7-mt-sp-1_45_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_45.lib boost_regex-vc7-mt-p-1_45_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_45.lib libboost_regex-vc7-mt-p-1_45_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_45.lib boost_regex-vc7-mt-gdp-1_45_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_45.lib libboost_regex-vc7-mt-sgdp-1_45_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.lib libboost_regex-vc7-mt-gdp-1_45_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45.lib +all : main_dir libboost_regex-vc7-mt-sp-1_46_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_46.lib boost_regex-vc7-mt-p-1_46_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_46.lib libboost_regex-vc7-mt-p-1_46_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_46.lib boost_regex-vc7-mt-gdp-1_46_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_46.lib libboost_regex-vc7-mt-sgdp-1_46_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.lib libboost_regex-vc7-mt-gdp-1_46_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46.lib -clean : libboost_regex-vc7-mt-sp-1_45_clean boost_regex-vc7-mt-p-1_45_clean libboost_regex-vc7-mt-p-1_45_clean boost_regex-vc7-mt-gdp-1_45_clean libboost_regex-vc7-mt-sgdp-1_45_clean libboost_regex-vc7-mt-gdp-1_45_clean +clean : libboost_regex-vc7-mt-sp-1_46_clean boost_regex-vc7-mt-p-1_46_clean libboost_regex-vc7-mt-p-1_46_clean boost_regex-vc7-mt-gdp-1_46_clean libboost_regex-vc7-mt-sgdp-1_46_clean libboost_regex-vc7-mt-gdp-1_46_clean install : stlport_check all - copy vc7-stlport\libboost_regex-vc7-mt-sp-1_45.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_45.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_45.dll "$(MSVCDIR)\bin" - copy vc7-stlport\libboost_regex-vc7-mt-p-1_45.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_45.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_45.dll "$(MSVCDIR)\bin" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_45.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_45.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_45.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_45.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_45.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sp-1_46.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_46.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_46.dll "$(MSVCDIR)\bin" + copy vc7-stlport\libboost_regex-vc7-mt-p-1_46.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_46.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_46.dll "$(MSVCDIR)\bin" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_46.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7-stlport\$(NULL)" mkdir vc7-stlport @@ -88,409 +88,409 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc7-mt-sp-1_45.lib +# section for libboost_regex-vc7-mt-sp-1_46.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_45.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sp-1_45_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_45\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_45 +libboost_regex-vc7-mt-sp-1_46_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_46\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_46 -libboost_regex-vc7-mt-sp-1_45_clean : - del vc7-stlport\libboost_regex-vc7-mt-sp-1_45\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sp-1_45\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sp-1_45\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sp-1_45\*.pch +libboost_regex-vc7-mt-sp-1_46_clean : + del vc7-stlport\libboost_regex-vc7-mt-sp-1_46\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sp-1_46\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sp-1_46\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sp-1_46\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sp-1_45.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_45/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_45.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_45/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_45/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sp-1_46.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_46.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-p-1_45.lib +# section for boost_regex-vc7-mt-p-1_46.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-p-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_45.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/winstances.cpp -boost_regex-vc7-mt-p-1_45_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_45\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_45 +boost_regex-vc7-mt-p-1_46_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_46\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_46 -boost_regex-vc7-mt-p-1_45_clean : - del vc7-stlport\boost_regex-vc7-mt-p-1_45\*.obj - del vc7-stlport\boost_regex-vc7-mt-p-1_45\*.idb - del vc7-stlport\boost_regex-vc7-mt-p-1_45\*.exp - del vc7-stlport\boost_regex-vc7-mt-p-1_45\*.pch +boost_regex-vc7-mt-p-1_46_clean : + del vc7-stlport\boost_regex-vc7-mt-p-1_46\*.obj + del vc7-stlport\boost_regex-vc7-mt-p-1_46\*.idb + del vc7-stlport\boost_regex-vc7-mt-p-1_46\*.exp + del vc7-stlport\boost_regex-vc7-mt-p-1_46\*.pch -./vc7-stlport/boost_regex-vc7-mt-p-1_45.lib : vc7-stlport/boost_regex-vc7-mt-p-1_45/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7-stlport/boost_regex-vc7-mt-p-1_45.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_45.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_45/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_45/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-p-1_46.lib : vc7-stlport/boost_regex-vc7-mt-p-1_46/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7-stlport/boost_regex-vc7-mt-p-1_46.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_46.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_46/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-p-1_45.lib +# section for libboost_regex-vc7-mt-p-1_46.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-p-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_45.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-p-1_45_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_45\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_45 +libboost_regex-vc7-mt-p-1_46_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_46\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_46 -libboost_regex-vc7-mt-p-1_45_clean : - del vc7-stlport\libboost_regex-vc7-mt-p-1_45\*.obj - del vc7-stlport\libboost_regex-vc7-mt-p-1_45\*.idb - del vc7-stlport\libboost_regex-vc7-mt-p-1_45\*.exp - del vc7-stlport\libboost_regex-vc7-mt-p-1_45\*.pch +libboost_regex-vc7-mt-p-1_46_clean : + del vc7-stlport\libboost_regex-vc7-mt-p-1_46\*.obj + del vc7-stlport\libboost_regex-vc7-mt-p-1_46\*.idb + del vc7-stlport\libboost_regex-vc7-mt-p-1_46\*.exp + del vc7-stlport\libboost_regex-vc7-mt-p-1_46\*.pch -./vc7-stlport/libboost_regex-vc7-mt-p-1_45.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_45/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_45.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_45/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_45/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-p-1_46.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_46.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gdp-1_45.lib +# section for boost_regex-vc7-mt-gdp-1_46.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gdp-1_45_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_45\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_45 +boost_regex-vc7-mt-gdp-1_46_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_46\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_46 -boost_regex-vc7-mt-gdp-1_45_clean : - del vc7-stlport\boost_regex-vc7-mt-gdp-1_45\*.obj - del vc7-stlport\boost_regex-vc7-mt-gdp-1_45\*.idb - del vc7-stlport\boost_regex-vc7-mt-gdp-1_45\*.exp - del vc7-stlport\boost_regex-vc7-mt-gdp-1_45\*.pch +boost_regex-vc7-mt-gdp-1_46_clean : + del vc7-stlport\boost_regex-vc7-mt-gdp-1_46\*.obj + del vc7-stlport\boost_regex-vc7-mt-gdp-1_46\*.idb + del vc7-stlport\boost_regex-vc7-mt-gdp-1_46\*.exp + del vc7-stlport\boost_regex-vc7-mt-gdp-1_46\*.pch -./vc7-stlport/boost_regex-vc7-mt-gdp-1_45.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_45/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7-stlport/boost_regex-vc7-mt-gdp-1_45.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_45.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_45/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_45/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-gdp-1_46.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_46.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgdp-1_45.lib +# section for libboost_regex-vc7-mt-sgdp-1_46.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgdp-1_45_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_45\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_45 +libboost_regex-vc7-mt-sgdp-1_46_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46 -libboost_regex-vc7-mt-sgdp-1_45_clean : - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_45\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_45\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_45\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_45\*.pch +libboost_regex-vc7-mt-sgdp-1_46_clean : + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_45/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gdp-1_45.lib +# section for libboost_regex-vc7-mt-gdp-1_46.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_45.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gdp-1_45_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_45\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_45 +libboost_regex-vc7-mt-gdp-1_46_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_46 -libboost_regex-vc7-mt-gdp-1_45_clean : - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_45\*.obj - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_45\*.idb - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_45\*.exp - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_45\*.pch +libboost_regex-vc7-mt-gdp-1_46_clean : + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\*.obj + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\*.idb + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\*.exp + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\*.pch -./vc7-stlport/libboost_regex-vc7-mt-gdp-1_45.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_45.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_45/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_46.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/winstances.obj diff --git a/build/vc7.mak b/build/vc7.mak index 8b83e295..6b331d22 100644 --- a/build/vc7.mak +++ b/build/vc7.mak @@ -3,7 +3,7 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt. # -# auto generated makefile for VC6 compiler +# auto generated makefile for MSVC compiler # # usage: # make @@ -62,25 +62,25 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc7-s-1_45_dir ./vc7/libboost_regex-vc7-s-1_45.lib libboost_regex-vc7-mt-s-1_45_dir ./vc7/libboost_regex-vc7-mt-s-1_45.lib libboost_regex-vc7-sgd-1_45_dir ./vc7/libboost_regex-vc7-sgd-1_45.lib libboost_regex-vc7-mt-sgd-1_45_dir ./vc7/libboost_regex-vc7-mt-sgd-1_45.lib boost_regex-vc7-mt-gd-1_45_dir ./vc7/boost_regex-vc7-mt-gd-1_45.lib boost_regex-vc7-mt-1_45_dir ./vc7/boost_regex-vc7-mt-1_45.lib libboost_regex-vc7-mt-1_45_dir ./vc7/libboost_regex-vc7-mt-1_45.lib libboost_regex-vc7-mt-gd-1_45_dir ./vc7/libboost_regex-vc7-mt-gd-1_45.lib +all : main_dir libboost_regex-vc7-s-1_46_dir ./vc7/libboost_regex-vc7-s-1_46.lib libboost_regex-vc7-mt-s-1_46_dir ./vc7/libboost_regex-vc7-mt-s-1_46.lib libboost_regex-vc7-sgd-1_46_dir ./vc7/libboost_regex-vc7-sgd-1_46.lib libboost_regex-vc7-mt-sgd-1_46_dir ./vc7/libboost_regex-vc7-mt-sgd-1_46.lib boost_regex-vc7-mt-gd-1_46_dir ./vc7/boost_regex-vc7-mt-gd-1_46.lib boost_regex-vc7-mt-1_46_dir ./vc7/boost_regex-vc7-mt-1_46.lib libboost_regex-vc7-mt-1_46_dir ./vc7/libboost_regex-vc7-mt-1_46.lib libboost_regex-vc7-mt-gd-1_46_dir ./vc7/libboost_regex-vc7-mt-gd-1_46.lib -clean : libboost_regex-vc7-s-1_45_clean libboost_regex-vc7-mt-s-1_45_clean libboost_regex-vc7-sgd-1_45_clean libboost_regex-vc7-mt-sgd-1_45_clean boost_regex-vc7-mt-gd-1_45_clean boost_regex-vc7-mt-1_45_clean libboost_regex-vc7-mt-1_45_clean libboost_regex-vc7-mt-gd-1_45_clean +clean : libboost_regex-vc7-s-1_46_clean libboost_regex-vc7-mt-s-1_46_clean libboost_regex-vc7-sgd-1_46_clean libboost_regex-vc7-mt-sgd-1_46_clean boost_regex-vc7-mt-gd-1_46_clean boost_regex-vc7-mt-1_46_clean libboost_regex-vc7-mt-1_46_clean libboost_regex-vc7-mt-gd-1_46_clean install : all - copy vc7\libboost_regex-vc7-s-1_45.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-s-1_45.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_45.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_45.pdb "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_45.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_45.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_45.dll "$(MSVCDIR)\bin" - copy vc7\boost_regex-vc7-mt-gd-1_45.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_45.dll "$(MSVCDIR)\bin" - copy vc7\libboost_regex-vc7-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_45.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-s-1_46.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-s-1_46.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_46.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_46.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_46.dll "$(MSVCDIR)\bin" + copy vc7\boost_regex-vc7-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_46.dll "$(MSVCDIR)\bin" + copy vc7\libboost_regex-vc7-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_46.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7\$(NULL)" mkdir vc7 @@ -88,545 +88,545 @@ main_dir : ######################################################## # -# section for libboost_regex-vc7-s-1_45.lib +# section for libboost_regex-vc7-s-1_46.lib # ######################################################## -vc7/libboost_regex-vc7-s-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-s-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-s-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-s-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-s-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-s-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-s-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-s-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-s-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-s-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-s-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-s-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-s-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_45/ -Fdvc7/libboost_regex-vc7-s-1_45.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-s-1_45_dir : - @if not exist "vc7\libboost_regex-vc7-s-1_45\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_45 +libboost_regex-vc7-s-1_46_dir : + @if not exist "vc7\libboost_regex-vc7-s-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_46 -libboost_regex-vc7-s-1_45_clean : - del vc7\libboost_regex-vc7-s-1_45\*.obj - del vc7\libboost_regex-vc7-s-1_45\*.idb - del vc7\libboost_regex-vc7-s-1_45\*.exp - del vc7\libboost_regex-vc7-s-1_45\*.pch +libboost_regex-vc7-s-1_46_clean : + del vc7\libboost_regex-vc7-s-1_46\*.obj + del vc7\libboost_regex-vc7-s-1_46\*.idb + del vc7\libboost_regex-vc7-s-1_46\*.exp + del vc7\libboost_regex-vc7-s-1_46\*.pch -./vc7/libboost_regex-vc7-s-1_45.lib : vc7/libboost_regex-vc7-s-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_45/cregex.obj vc7/libboost_regex-vc7-s-1_45/fileiter.obj vc7/libboost_regex-vc7-s-1_45/icu.obj vc7/libboost_regex-vc7-s-1_45/instances.obj vc7/libboost_regex-vc7-s-1_45/posix_api.obj vc7/libboost_regex-vc7-s-1_45/regex.obj vc7/libboost_regex-vc7-s-1_45/regex_debug.obj vc7/libboost_regex-vc7-s-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_45/static_mutex.obj vc7/libboost_regex-vc7-s-1_45/usinstances.obj vc7/libboost_regex-vc7-s-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_45/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_45.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_45/cregex.obj vc7/libboost_regex-vc7-s-1_45/fileiter.obj vc7/libboost_regex-vc7-s-1_45/icu.obj vc7/libboost_regex-vc7-s-1_45/instances.obj vc7/libboost_regex-vc7-s-1_45/posix_api.obj vc7/libboost_regex-vc7-s-1_45/regex.obj vc7/libboost_regex-vc7-s-1_45/regex_debug.obj vc7/libboost_regex-vc7-s-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_45/static_mutex.obj vc7/libboost_regex-vc7-s-1_45/usinstances.obj vc7/libboost_regex-vc7-s-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_45/winstances.obj +./vc7/libboost_regex-vc7-s-1_46.lib : vc7/libboost_regex-vc7-s-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/cregex.obj vc7/libboost_regex-vc7-s-1_46/fileiter.obj vc7/libboost_regex-vc7-s-1_46/icu.obj vc7/libboost_regex-vc7-s-1_46/instances.obj vc7/libboost_regex-vc7-s-1_46/posix_api.obj vc7/libboost_regex-vc7-s-1_46/regex.obj vc7/libboost_regex-vc7-s-1_46/regex_debug.obj vc7/libboost_regex-vc7-s-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_46/static_mutex.obj vc7/libboost_regex-vc7-s-1_46/usinstances.obj vc7/libboost_regex-vc7-s-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_46/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/cregex.obj vc7/libboost_regex-vc7-s-1_46/fileiter.obj vc7/libboost_regex-vc7-s-1_46/icu.obj vc7/libboost_regex-vc7-s-1_46/instances.obj vc7/libboost_regex-vc7-s-1_46/posix_api.obj vc7/libboost_regex-vc7-s-1_46/regex.obj vc7/libboost_regex-vc7-s-1_46/regex_debug.obj vc7/libboost_regex-vc7-s-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_46/static_mutex.obj vc7/libboost_regex-vc7-s-1_46/usinstances.obj vc7/libboost_regex-vc7-s-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-s-1_45.lib +# section for libboost_regex-vc7-mt-s-1_46.lib # ######################################################## -vc7/libboost_regex-vc7-mt-s-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-s-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-s-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-s-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-s-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-s-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-s-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-s-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-s-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-s-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-s-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_45/ -Fdvc7/libboost_regex-vc7-mt-s-1_45.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-s-1_45_dir : - @if not exist "vc7\libboost_regex-vc7-mt-s-1_45\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_45 +libboost_regex-vc7-mt-s-1_46_dir : + @if not exist "vc7\libboost_regex-vc7-mt-s-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_46 -libboost_regex-vc7-mt-s-1_45_clean : - del vc7\libboost_regex-vc7-mt-s-1_45\*.obj - del vc7\libboost_regex-vc7-mt-s-1_45\*.idb - del vc7\libboost_regex-vc7-mt-s-1_45\*.exp - del vc7\libboost_regex-vc7-mt-s-1_45\*.pch +libboost_regex-vc7-mt-s-1_46_clean : + del vc7\libboost_regex-vc7-mt-s-1_46\*.obj + del vc7\libboost_regex-vc7-mt-s-1_46\*.idb + del vc7\libboost_regex-vc7-mt-s-1_46\*.exp + del vc7\libboost_regex-vc7-mt-s-1_46\*.pch -./vc7/libboost_regex-vc7-mt-s-1_45.lib : vc7/libboost_regex-vc7-mt-s-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_45/cregex.obj vc7/libboost_regex-vc7-mt-s-1_45/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_45/icu.obj vc7/libboost_regex-vc7-mt-s-1_45/instances.obj vc7/libboost_regex-vc7-mt-s-1_45/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_45/regex.obj vc7/libboost_regex-vc7-mt-s-1_45/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_45/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_45/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_45/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_45.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_45/cregex.obj vc7/libboost_regex-vc7-mt-s-1_45/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_45/icu.obj vc7/libboost_regex-vc7-mt-s-1_45/instances.obj vc7/libboost_regex-vc7-mt-s-1_45/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_45/regex.obj vc7/libboost_regex-vc7-mt-s-1_45/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_45/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_45/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_45/winstances.obj +./vc7/libboost_regex-vc7-mt-s-1_46.lib : vc7/libboost_regex-vc7-mt-s-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/cregex.obj vc7/libboost_regex-vc7-mt-s-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_46/icu.obj vc7/libboost_regex-vc7-mt-s-1_46/instances.obj vc7/libboost_regex-vc7-mt-s-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_46/regex.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_46/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/cregex.obj vc7/libboost_regex-vc7-mt-s-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_46/icu.obj vc7/libboost_regex-vc7-mt-s-1_46/instances.obj vc7/libboost_regex-vc7-mt-s-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_46/regex.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc7-sgd-1_45.lib +# section for libboost_regex-vc7-sgd-1_46.lib # ######################################################## -vc7/libboost_regex-vc7-sgd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-sgd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-sgd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-sgd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-sgd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-sgd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-sgd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-sgd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-sgd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-sgd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-sgd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_45/ -Fdvc7/libboost_regex-vc7-sgd-1_45.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-sgd-1_45_dir : - @if not exist "vc7\libboost_regex-vc7-sgd-1_45\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_45 +libboost_regex-vc7-sgd-1_46_dir : + @if not exist "vc7\libboost_regex-vc7-sgd-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_46 -libboost_regex-vc7-sgd-1_45_clean : - del vc7\libboost_regex-vc7-sgd-1_45\*.obj - del vc7\libboost_regex-vc7-sgd-1_45\*.idb - del vc7\libboost_regex-vc7-sgd-1_45\*.exp - del vc7\libboost_regex-vc7-sgd-1_45\*.pch +libboost_regex-vc7-sgd-1_46_clean : + del vc7\libboost_regex-vc7-sgd-1_46\*.obj + del vc7\libboost_regex-vc7-sgd-1_46\*.idb + del vc7\libboost_regex-vc7-sgd-1_46\*.exp + del vc7\libboost_regex-vc7-sgd-1_46\*.pch -./vc7/libboost_regex-vc7-sgd-1_45.lib : vc7/libboost_regex-vc7-sgd-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_45/cregex.obj vc7/libboost_regex-vc7-sgd-1_45/fileiter.obj vc7/libboost_regex-vc7-sgd-1_45/icu.obj vc7/libboost_regex-vc7-sgd-1_45/instances.obj vc7/libboost_regex-vc7-sgd-1_45/posix_api.obj vc7/libboost_regex-vc7-sgd-1_45/regex.obj vc7/libboost_regex-vc7-sgd-1_45/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_45/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_45/usinstances.obj vc7/libboost_regex-vc7-sgd-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_45/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_45.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_45/cregex.obj vc7/libboost_regex-vc7-sgd-1_45/fileiter.obj vc7/libboost_regex-vc7-sgd-1_45/icu.obj vc7/libboost_regex-vc7-sgd-1_45/instances.obj vc7/libboost_regex-vc7-sgd-1_45/posix_api.obj vc7/libboost_regex-vc7-sgd-1_45/regex.obj vc7/libboost_regex-vc7-sgd-1_45/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_45/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_45/usinstances.obj vc7/libboost_regex-vc7-sgd-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_45/winstances.obj +./vc7/libboost_regex-vc7-sgd-1_46.lib : vc7/libboost_regex-vc7-sgd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/cregex.obj vc7/libboost_regex-vc7-sgd-1_46/fileiter.obj vc7/libboost_regex-vc7-sgd-1_46/icu.obj vc7/libboost_regex-vc7-sgd-1_46/instances.obj vc7/libboost_regex-vc7-sgd-1_46/posix_api.obj vc7/libboost_regex-vc7-sgd-1_46/regex.obj vc7/libboost_regex-vc7-sgd-1_46/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_46/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_46/usinstances.obj vc7/libboost_regex-vc7-sgd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_46/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/cregex.obj vc7/libboost_regex-vc7-sgd-1_46/fileiter.obj vc7/libboost_regex-vc7-sgd-1_46/icu.obj vc7/libboost_regex-vc7-sgd-1_46/instances.obj vc7/libboost_regex-vc7-sgd-1_46/posix_api.obj vc7/libboost_regex-vc7-sgd-1_46/regex.obj vc7/libboost_regex-vc7-sgd-1_46/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_46/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_46/usinstances.obj vc7/libboost_regex-vc7-sgd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgd-1_45.lib +# section for libboost_regex-vc7-mt-sgd-1_46.lib # ######################################################## -vc7/libboost_regex-vc7-mt-sgd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_45/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_45.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgd-1_45_dir : - @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_45\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_45 +libboost_regex-vc7-mt-sgd-1_46_dir : + @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_46 -libboost_regex-vc7-mt-sgd-1_45_clean : - del vc7\libboost_regex-vc7-mt-sgd-1_45\*.obj - del vc7\libboost_regex-vc7-mt-sgd-1_45\*.idb - del vc7\libboost_regex-vc7-mt-sgd-1_45\*.exp - del vc7\libboost_regex-vc7-mt-sgd-1_45\*.pch +libboost_regex-vc7-mt-sgd-1_46_clean : + del vc7\libboost_regex-vc7-mt-sgd-1_46\*.obj + del vc7\libboost_regex-vc7-mt-sgd-1_46\*.idb + del vc7\libboost_regex-vc7-mt-sgd-1_46\*.exp + del vc7\libboost_regex-vc7-mt-sgd-1_46\*.pch -./vc7/libboost_regex-vc7-mt-sgd-1_45.lib : vc7/libboost_regex-vc7-mt-sgd-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_45/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_45/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_45/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_45/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_45/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_45/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_45/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_45/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_45/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_45/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_45.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_45/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_45/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_45/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_45/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_45/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_45/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_45/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_45/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_45/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_45/winstances.obj +./vc7/libboost_regex-vc7-mt-sgd-1_46.lib : vc7/libboost_regex-vc7-mt-sgd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_46/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_46/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_46/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_46/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_46/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gd-1_45.lib +# section for boost_regex-vc7-mt-gd-1_46.lib # ######################################################## -vc7/boost_regex-vc7-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_45/ -Fdvc7/boost_regex-vc7-mt-gd-1_45.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gd-1_45_dir : - @if not exist "vc7\boost_regex-vc7-mt-gd-1_45\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_45 +boost_regex-vc7-mt-gd-1_46_dir : + @if not exist "vc7\boost_regex-vc7-mt-gd-1_46\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_46 -boost_regex-vc7-mt-gd-1_45_clean : - del vc7\boost_regex-vc7-mt-gd-1_45\*.obj - del vc7\boost_regex-vc7-mt-gd-1_45\*.idb - del vc7\boost_regex-vc7-mt-gd-1_45\*.exp - del vc7\boost_regex-vc7-mt-gd-1_45\*.pch +boost_regex-vc7-mt-gd-1_46_clean : + del vc7\boost_regex-vc7-mt-gd-1_46\*.obj + del vc7\boost_regex-vc7-mt-gd-1_46\*.idb + del vc7\boost_regex-vc7-mt-gd-1_46\*.exp + del vc7\boost_regex-vc7-mt-gd-1_46\*.pch -./vc7/boost_regex-vc7-mt-gd-1_45.lib : vc7/boost_regex-vc7-mt-gd-1_45/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_45/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_45/cregex.obj vc7/boost_regex-vc7-mt-gd-1_45/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_45/icu.obj vc7/boost_regex-vc7-mt-gd-1_45/instances.obj vc7/boost_regex-vc7-mt-gd-1_45/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_45/regex.obj vc7/boost_regex-vc7-mt-gd-1_45/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_45/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_45/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_45/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_45/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_45/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_45/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_45/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7/boost_regex-vc7-mt-gd-1_45.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_45.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_45/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_45/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_45/cregex.obj vc7/boost_regex-vc7-mt-gd-1_45/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_45/icu.obj vc7/boost_regex-vc7-mt-gd-1_45/instances.obj vc7/boost_regex-vc7-mt-gd-1_45/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_45/regex.obj vc7/boost_regex-vc7-mt-gd-1_45/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_45/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_45/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_45/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_45/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_45/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_45/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_45/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_45/winstances.obj +./vc7/boost_regex-vc7-mt-gd-1_46.lib : vc7/boost_regex-vc7-mt-gd-1_46/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/cregex.obj vc7/boost_regex-vc7-mt-gd-1_46/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_46/icu.obj vc7/boost_regex-vc7-mt-gd-1_46/instances.obj vc7/boost_regex-vc7-mt-gd-1_46/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_46/regex.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_46/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_46/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7/boost_regex-vc7-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_46.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_46/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/cregex.obj vc7/boost_regex-vc7-mt-gd-1_46/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_46/icu.obj vc7/boost_regex-vc7-mt-gd-1_46/instances.obj vc7/boost_regex-vc7-mt-gd-1_46/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_46/regex.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_46/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_46/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-1_45.lib +# section for boost_regex-vc7-mt-1_46.lib # ######################################################## -vc7/boost_regex-vc7-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_45/ -Fdvc7/boost_regex-vc7-mt-1_45.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/winstances.cpp -boost_regex-vc7-mt-1_45_dir : - @if not exist "vc7\boost_regex-vc7-mt-1_45\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_45 +boost_regex-vc7-mt-1_46_dir : + @if not exist "vc7\boost_regex-vc7-mt-1_46\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_46 -boost_regex-vc7-mt-1_45_clean : - del vc7\boost_regex-vc7-mt-1_45\*.obj - del vc7\boost_regex-vc7-mt-1_45\*.idb - del vc7\boost_regex-vc7-mt-1_45\*.exp - del vc7\boost_regex-vc7-mt-1_45\*.pch +boost_regex-vc7-mt-1_46_clean : + del vc7\boost_regex-vc7-mt-1_46\*.obj + del vc7\boost_regex-vc7-mt-1_46\*.idb + del vc7\boost_regex-vc7-mt-1_46\*.exp + del vc7\boost_regex-vc7-mt-1_46\*.pch -./vc7/boost_regex-vc7-mt-1_45.lib : vc7/boost_regex-vc7-mt-1_45/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_45/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_45/cregex.obj vc7/boost_regex-vc7-mt-1_45/fileiter.obj vc7/boost_regex-vc7-mt-1_45/icu.obj vc7/boost_regex-vc7-mt-1_45/instances.obj vc7/boost_regex-vc7-mt-1_45/posix_api.obj vc7/boost_regex-vc7-mt-1_45/regex.obj vc7/boost_regex-vc7-mt-1_45/regex_debug.obj vc7/boost_regex-vc7-mt-1_45/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_45/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_45/static_mutex.obj vc7/boost_regex-vc7-mt-1_45/usinstances.obj vc7/boost_regex-vc7-mt-1_45/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_45/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_45/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7/boost_regex-vc7-mt-1_45.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_45.dll" /implib:"vc7/boost_regex-vc7-mt-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_45/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_45/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_45/cregex.obj vc7/boost_regex-vc7-mt-1_45/fileiter.obj vc7/boost_regex-vc7-mt-1_45/icu.obj vc7/boost_regex-vc7-mt-1_45/instances.obj vc7/boost_regex-vc7-mt-1_45/posix_api.obj vc7/boost_regex-vc7-mt-1_45/regex.obj vc7/boost_regex-vc7-mt-1_45/regex_debug.obj vc7/boost_regex-vc7-mt-1_45/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_45/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_45/static_mutex.obj vc7/boost_regex-vc7-mt-1_45/usinstances.obj vc7/boost_regex-vc7-mt-1_45/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_45/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_45/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_45/winstances.obj +./vc7/boost_regex-vc7-mt-1_46.lib : vc7/boost_regex-vc7-mt-1_46/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/cregex.obj vc7/boost_regex-vc7-mt-1_46/fileiter.obj vc7/boost_regex-vc7-mt-1_46/icu.obj vc7/boost_regex-vc7-mt-1_46/instances.obj vc7/boost_regex-vc7-mt-1_46/posix_api.obj vc7/boost_regex-vc7-mt-1_46/regex.obj vc7/boost_regex-vc7-mt-1_46/regex_debug.obj vc7/boost_regex-vc7-mt-1_46/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_46/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_46/static_mutex.obj vc7/boost_regex-vc7-mt-1_46/usinstances.obj vc7/boost_regex-vc7-mt-1_46/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7/boost_regex-vc7-mt-1_46.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_46.dll" /implib:"vc7/boost_regex-vc7-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_46/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/cregex.obj vc7/boost_regex-vc7-mt-1_46/fileiter.obj vc7/boost_regex-vc7-mt-1_46/icu.obj vc7/boost_regex-vc7-mt-1_46/instances.obj vc7/boost_regex-vc7-mt-1_46/posix_api.obj vc7/boost_regex-vc7-mt-1_46/regex.obj vc7/boost_regex-vc7-mt-1_46/regex_debug.obj vc7/boost_regex-vc7-mt-1_46/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_46/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_46/static_mutex.obj vc7/boost_regex-vc7-mt-1_46/usinstances.obj vc7/boost_regex-vc7-mt-1_46/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-1_45.lib +# section for libboost_regex-vc7-mt-1_46.lib # ######################################################## -vc7/libboost_regex-vc7-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_45/ -Fdvc7/libboost_regex-vc7-mt-1_45.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-1_45_dir : - @if not exist "vc7\libboost_regex-vc7-mt-1_45\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_45 +libboost_regex-vc7-mt-1_46_dir : + @if not exist "vc7\libboost_regex-vc7-mt-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_46 -libboost_regex-vc7-mt-1_45_clean : - del vc7\libboost_regex-vc7-mt-1_45\*.obj - del vc7\libboost_regex-vc7-mt-1_45\*.idb - del vc7\libboost_regex-vc7-mt-1_45\*.exp - del vc7\libboost_regex-vc7-mt-1_45\*.pch +libboost_regex-vc7-mt-1_46_clean : + del vc7\libboost_regex-vc7-mt-1_46\*.obj + del vc7\libboost_regex-vc7-mt-1_46\*.idb + del vc7\libboost_regex-vc7-mt-1_46\*.exp + del vc7\libboost_regex-vc7-mt-1_46\*.pch -./vc7/libboost_regex-vc7-mt-1_45.lib : vc7/libboost_regex-vc7-mt-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_45/cregex.obj vc7/libboost_regex-vc7-mt-1_45/fileiter.obj vc7/libboost_regex-vc7-mt-1_45/icu.obj vc7/libboost_regex-vc7-mt-1_45/instances.obj vc7/libboost_regex-vc7-mt-1_45/posix_api.obj vc7/libboost_regex-vc7-mt-1_45/regex.obj vc7/libboost_regex-vc7-mt-1_45/regex_debug.obj vc7/libboost_regex-vc7-mt-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_45/static_mutex.obj vc7/libboost_regex-vc7-mt-1_45/usinstances.obj vc7/libboost_regex-vc7-mt-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_45/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_45.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_45/cregex.obj vc7/libboost_regex-vc7-mt-1_45/fileiter.obj vc7/libboost_regex-vc7-mt-1_45/icu.obj vc7/libboost_regex-vc7-mt-1_45/instances.obj vc7/libboost_regex-vc7-mt-1_45/posix_api.obj vc7/libboost_regex-vc7-mt-1_45/regex.obj vc7/libboost_regex-vc7-mt-1_45/regex_debug.obj vc7/libboost_regex-vc7-mt-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_45/static_mutex.obj vc7/libboost_regex-vc7-mt-1_45/usinstances.obj vc7/libboost_regex-vc7-mt-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_45/winstances.obj +./vc7/libboost_regex-vc7-mt-1_46.lib : vc7/libboost_regex-vc7-mt-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/cregex.obj vc7/libboost_regex-vc7-mt-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-1_46/icu.obj vc7/libboost_regex-vc7-mt-1_46/instances.obj vc7/libboost_regex-vc7-mt-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-1_46/regex.obj vc7/libboost_regex-vc7-mt-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_46/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/cregex.obj vc7/libboost_regex-vc7-mt-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-1_46/icu.obj vc7/libboost_regex-vc7-mt-1_46/instances.obj vc7/libboost_regex-vc7-mt-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-1_46/regex.obj vc7/libboost_regex-vc7-mt-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gd-1_45.lib +# section for libboost_regex-vc7-mt-gd-1_46.lib # ######################################################## -vc7/libboost_regex-vc7-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_45/ -Fdvc7/libboost_regex-vc7-mt-gd-1_45.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gd-1_45_dir : - @if not exist "vc7\libboost_regex-vc7-mt-gd-1_45\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_45 +libboost_regex-vc7-mt-gd-1_46_dir : + @if not exist "vc7\libboost_regex-vc7-mt-gd-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_46 -libboost_regex-vc7-mt-gd-1_45_clean : - del vc7\libboost_regex-vc7-mt-gd-1_45\*.obj - del vc7\libboost_regex-vc7-mt-gd-1_45\*.idb - del vc7\libboost_regex-vc7-mt-gd-1_45\*.exp - del vc7\libboost_regex-vc7-mt-gd-1_45\*.pch +libboost_regex-vc7-mt-gd-1_46_clean : + del vc7\libboost_regex-vc7-mt-gd-1_46\*.obj + del vc7\libboost_regex-vc7-mt-gd-1_46\*.idb + del vc7\libboost_regex-vc7-mt-gd-1_46\*.exp + del vc7\libboost_regex-vc7-mt-gd-1_46\*.pch -./vc7/libboost_regex-vc7-mt-gd-1_45.lib : vc7/libboost_regex-vc7-mt-gd-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_45/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_45/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_45/icu.obj vc7/libboost_regex-vc7-mt-gd-1_45/instances.obj vc7/libboost_regex-vc7-mt-gd-1_45/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_45/regex.obj vc7/libboost_regex-vc7-mt-gd-1_45/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_45/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_45/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_45/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_45.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_45/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_45/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_45/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_45/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_45/icu.obj vc7/libboost_regex-vc7-mt-gd-1_45/instances.obj vc7/libboost_regex-vc7-mt-gd-1_45/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_45/regex.obj vc7/libboost_regex-vc7-mt-gd-1_45/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_45/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_45/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_45/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_45/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_45/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_45/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_45/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_45/winstances.obj +./vc7/libboost_regex-vc7-mt-gd-1_46.lib : vc7/libboost_regex-vc7-mt-gd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_46/icu.obj vc7/libboost_regex-vc7-mt-gd-1_46/instances.obj vc7/libboost_regex-vc7-mt-gd-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_46/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_46/icu.obj vc7/libboost_regex-vc7-mt-gd-1_46/instances.obj vc7/libboost_regex-vc7-mt-gd-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_46/winstances.obj diff --git a/build/vc71-stlport.mak b/build/vc71-stlport.mak index 3b426b9b..9f748bd9 100644 --- a/build/vc71-stlport.mak +++ b/build/vc71-stlport.mak @@ -62,22 +62,22 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc71-mt-sp-1_45_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_45.lib boost_regex-vc71-mt-p-1_45_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_45.lib libboost_regex-vc71-mt-p-1_45_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_45.lib boost_regex-vc71-mt-gdp-1_45_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_45.lib libboost_regex-vc71-mt-sgdp-1_45_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.lib libboost_regex-vc71-mt-gdp-1_45_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45.lib +all : main_dir libboost_regex-vc71-mt-sp-1_46_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_46.lib boost_regex-vc71-mt-p-1_46_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_46.lib libboost_regex-vc71-mt-p-1_46_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_46.lib boost_regex-vc71-mt-gdp-1_46_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_46.lib libboost_regex-vc71-mt-sgdp-1_46_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.lib libboost_regex-vc71-mt-gdp-1_46_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46.lib -clean : libboost_regex-vc71-mt-sp-1_45_clean boost_regex-vc71-mt-p-1_45_clean libboost_regex-vc71-mt-p-1_45_clean boost_regex-vc71-mt-gdp-1_45_clean libboost_regex-vc71-mt-sgdp-1_45_clean libboost_regex-vc71-mt-gdp-1_45_clean +clean : libboost_regex-vc71-mt-sp-1_46_clean boost_regex-vc71-mt-p-1_46_clean libboost_regex-vc71-mt-p-1_46_clean boost_regex-vc71-mt-gdp-1_46_clean libboost_regex-vc71-mt-sgdp-1_46_clean libboost_regex-vc71-mt-gdp-1_46_clean install : stlport_check all - copy vc71-stlport\libboost_regex-vc71-mt-sp-1_45.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_45.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_45.dll "$(MSVCDIR)\bin" - copy vc71-stlport\libboost_regex-vc71-mt-p-1_45.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_45.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_45.dll "$(MSVCDIR)\bin" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_45.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_45.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_45.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_45.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_45.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sp-1_46.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_46.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_46.dll "$(MSVCDIR)\bin" + copy vc71-stlport\libboost_regex-vc71-mt-p-1_46.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_46.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_46.dll "$(MSVCDIR)\bin" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_46.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71-stlport\$(NULL)" mkdir vc71-stlport @@ -88,409 +88,409 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc71-mt-sp-1_45.lib +# section for libboost_regex-vc71-mt-sp-1_46.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_45.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sp-1_45_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_45\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_45 +libboost_regex-vc71-mt-sp-1_46_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_46\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_46 -libboost_regex-vc71-mt-sp-1_45_clean : - del vc71-stlport\libboost_regex-vc71-mt-sp-1_45\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sp-1_45\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sp-1_45\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sp-1_45\*.pch +libboost_regex-vc71-mt-sp-1_46_clean : + del vc71-stlport\libboost_regex-vc71-mt-sp-1_46\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sp-1_46\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sp-1_46\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sp-1_46\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sp-1_45.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_45/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_45.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_45/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_45/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sp-1_46.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_46.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-p-1_45.lib +# section for boost_regex-vc71-mt-p-1_46.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-p-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_45.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/winstances.cpp -boost_regex-vc71-mt-p-1_45_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_45\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_45 +boost_regex-vc71-mt-p-1_46_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_46\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_46 -boost_regex-vc71-mt-p-1_45_clean : - del vc71-stlport\boost_regex-vc71-mt-p-1_45\*.obj - del vc71-stlport\boost_regex-vc71-mt-p-1_45\*.idb - del vc71-stlport\boost_regex-vc71-mt-p-1_45\*.exp - del vc71-stlport\boost_regex-vc71-mt-p-1_45\*.pch +boost_regex-vc71-mt-p-1_46_clean : + del vc71-stlport\boost_regex-vc71-mt-p-1_46\*.obj + del vc71-stlport\boost_regex-vc71-mt-p-1_46\*.idb + del vc71-stlport\boost_regex-vc71-mt-p-1_46\*.exp + del vc71-stlport\boost_regex-vc71-mt-p-1_46\*.pch -./vc71-stlport/boost_regex-vc71-mt-p-1_45.lib : vc71-stlport/boost_regex-vc71-mt-p-1_45/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71-stlport/boost_regex-vc71-mt-p-1_45.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_45.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_45/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_45/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-p-1_46.lib : vc71-stlport/boost_regex-vc71-mt-p-1_46/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71-stlport/boost_regex-vc71-mt-p-1_46.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_46.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_46/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-p-1_45.lib +# section for libboost_regex-vc71-mt-p-1_46.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-p-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_45.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-p-1_45_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_45\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_45 +libboost_regex-vc71-mt-p-1_46_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_46\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_46 -libboost_regex-vc71-mt-p-1_45_clean : - del vc71-stlport\libboost_regex-vc71-mt-p-1_45\*.obj - del vc71-stlport\libboost_regex-vc71-mt-p-1_45\*.idb - del vc71-stlport\libboost_regex-vc71-mt-p-1_45\*.exp - del vc71-stlport\libboost_regex-vc71-mt-p-1_45\*.pch +libboost_regex-vc71-mt-p-1_46_clean : + del vc71-stlport\libboost_regex-vc71-mt-p-1_46\*.obj + del vc71-stlport\libboost_regex-vc71-mt-p-1_46\*.idb + del vc71-stlport\libboost_regex-vc71-mt-p-1_46\*.exp + del vc71-stlport\libboost_regex-vc71-mt-p-1_46\*.pch -./vc71-stlport/libboost_regex-vc71-mt-p-1_45.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_45/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_45.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_45/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_45/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-p-1_46.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_46.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gdp-1_45.lib +# section for boost_regex-vc71-mt-gdp-1_46.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gdp-1_45_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_45\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_45 +boost_regex-vc71-mt-gdp-1_46_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_46\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_46 -boost_regex-vc71-mt-gdp-1_45_clean : - del vc71-stlport\boost_regex-vc71-mt-gdp-1_45\*.obj - del vc71-stlport\boost_regex-vc71-mt-gdp-1_45\*.idb - del vc71-stlport\boost_regex-vc71-mt-gdp-1_45\*.exp - del vc71-stlport\boost_regex-vc71-mt-gdp-1_45\*.pch +boost_regex-vc71-mt-gdp-1_46_clean : + del vc71-stlport\boost_regex-vc71-mt-gdp-1_46\*.obj + del vc71-stlport\boost_regex-vc71-mt-gdp-1_46\*.idb + del vc71-stlport\boost_regex-vc71-mt-gdp-1_46\*.exp + del vc71-stlport\boost_regex-vc71-mt-gdp-1_46\*.pch -./vc71-stlport/boost_regex-vc71-mt-gdp-1_45.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_45/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71-stlport/boost_regex-vc71-mt-gdp-1_45.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_45.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_45/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_45/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-gdp-1_46.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_46.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgdp-1_45.lib +# section for libboost_regex-vc71-mt-sgdp-1_46.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgdp-1_45_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_45\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_45 +libboost_regex-vc71-mt-sgdp-1_46_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46 -libboost_regex-vc71-mt-sgdp-1_45_clean : - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_45\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_45\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_45\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_45\*.pch +libboost_regex-vc71-mt-sgdp-1_46_clean : + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_45/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gdp-1_45.lib +# section for libboost_regex-vc71-mt-gdp-1_46.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_45.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gdp-1_45_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_45\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_45 +libboost_regex-vc71-mt-gdp-1_46_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_46 -libboost_regex-vc71-mt-gdp-1_45_clean : - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_45\*.obj - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_45\*.idb - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_45\*.exp - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_45\*.pch +libboost_regex-vc71-mt-gdp-1_46_clean : + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\*.obj + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\*.idb + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\*.exp + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\*.pch -./vc71-stlport/libboost_regex-vc71-mt-gdp-1_45.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_45.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_45/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_46.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/winstances.obj diff --git a/build/vc71.mak b/build/vc71.mak index 0a587141..17e555c5 100644 --- a/build/vc71.mak +++ b/build/vc71.mak @@ -3,7 +3,7 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt. # -# auto generated makefile for VC6 compiler +# auto generated makefile for MSVC compiler # # usage: # make @@ -62,25 +62,25 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc71-s-1_45_dir ./vc71/libboost_regex-vc71-s-1_45.lib libboost_regex-vc71-mt-s-1_45_dir ./vc71/libboost_regex-vc71-mt-s-1_45.lib libboost_regex-vc71-sgd-1_45_dir ./vc71/libboost_regex-vc71-sgd-1_45.lib libboost_regex-vc71-mt-sgd-1_45_dir ./vc71/libboost_regex-vc71-mt-sgd-1_45.lib boost_regex-vc71-mt-gd-1_45_dir ./vc71/boost_regex-vc71-mt-gd-1_45.lib boost_regex-vc71-mt-1_45_dir ./vc71/boost_regex-vc71-mt-1_45.lib libboost_regex-vc71-mt-1_45_dir ./vc71/libboost_regex-vc71-mt-1_45.lib libboost_regex-vc71-mt-gd-1_45_dir ./vc71/libboost_regex-vc71-mt-gd-1_45.lib +all : main_dir libboost_regex-vc71-s-1_46_dir ./vc71/libboost_regex-vc71-s-1_46.lib libboost_regex-vc71-mt-s-1_46_dir ./vc71/libboost_regex-vc71-mt-s-1_46.lib libboost_regex-vc71-sgd-1_46_dir ./vc71/libboost_regex-vc71-sgd-1_46.lib libboost_regex-vc71-mt-sgd-1_46_dir ./vc71/libboost_regex-vc71-mt-sgd-1_46.lib boost_regex-vc71-mt-gd-1_46_dir ./vc71/boost_regex-vc71-mt-gd-1_46.lib boost_regex-vc71-mt-1_46_dir ./vc71/boost_regex-vc71-mt-1_46.lib libboost_regex-vc71-mt-1_46_dir ./vc71/libboost_regex-vc71-mt-1_46.lib libboost_regex-vc71-mt-gd-1_46_dir ./vc71/libboost_regex-vc71-mt-gd-1_46.lib -clean : libboost_regex-vc71-s-1_45_clean libboost_regex-vc71-mt-s-1_45_clean libboost_regex-vc71-sgd-1_45_clean libboost_regex-vc71-mt-sgd-1_45_clean boost_regex-vc71-mt-gd-1_45_clean boost_regex-vc71-mt-1_45_clean libboost_regex-vc71-mt-1_45_clean libboost_regex-vc71-mt-gd-1_45_clean +clean : libboost_regex-vc71-s-1_46_clean libboost_regex-vc71-mt-s-1_46_clean libboost_regex-vc71-sgd-1_46_clean libboost_regex-vc71-mt-sgd-1_46_clean boost_regex-vc71-mt-gd-1_46_clean boost_regex-vc71-mt-1_46_clean libboost_regex-vc71-mt-1_46_clean libboost_regex-vc71-mt-gd-1_46_clean install : all - copy vc71\libboost_regex-vc71-s-1_45.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-s-1_45.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_45.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_45.pdb "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_45.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_45.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_45.dll "$(MSVCDIR)\bin" - copy vc71\boost_regex-vc71-mt-gd-1_45.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_45.dll "$(MSVCDIR)\bin" - copy vc71\libboost_regex-vc71-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_45.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-s-1_46.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-s-1_46.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_46.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_46.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_46.dll "$(MSVCDIR)\bin" + copy vc71\boost_regex-vc71-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_46.dll "$(MSVCDIR)\bin" + copy vc71\libboost_regex-vc71-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_46.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71\$(NULL)" mkdir vc71 @@ -88,545 +88,545 @@ main_dir : ######################################################## # -# section for libboost_regex-vc71-s-1_45.lib +# section for libboost_regex-vc71-s-1_46.lib # ######################################################## -vc71/libboost_regex-vc71-s-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-s-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-s-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-s-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-s-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-s-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-s-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-s-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-s-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-s-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-s-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-s-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-s-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_45/ -Fdvc71/libboost_regex-vc71-s-1_45.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-s-1_45_dir : - @if not exist "vc71\libboost_regex-vc71-s-1_45\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_45 +libboost_regex-vc71-s-1_46_dir : + @if not exist "vc71\libboost_regex-vc71-s-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_46 -libboost_regex-vc71-s-1_45_clean : - del vc71\libboost_regex-vc71-s-1_45\*.obj - del vc71\libboost_regex-vc71-s-1_45\*.idb - del vc71\libboost_regex-vc71-s-1_45\*.exp - del vc71\libboost_regex-vc71-s-1_45\*.pch +libboost_regex-vc71-s-1_46_clean : + del vc71\libboost_regex-vc71-s-1_46\*.obj + del vc71\libboost_regex-vc71-s-1_46\*.idb + del vc71\libboost_regex-vc71-s-1_46\*.exp + del vc71\libboost_regex-vc71-s-1_46\*.pch -./vc71/libboost_regex-vc71-s-1_45.lib : vc71/libboost_regex-vc71-s-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_45/cregex.obj vc71/libboost_regex-vc71-s-1_45/fileiter.obj vc71/libboost_regex-vc71-s-1_45/icu.obj vc71/libboost_regex-vc71-s-1_45/instances.obj vc71/libboost_regex-vc71-s-1_45/posix_api.obj vc71/libboost_regex-vc71-s-1_45/regex.obj vc71/libboost_regex-vc71-s-1_45/regex_debug.obj vc71/libboost_regex-vc71-s-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_45/static_mutex.obj vc71/libboost_regex-vc71-s-1_45/usinstances.obj vc71/libboost_regex-vc71-s-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_45/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_45.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_45/cregex.obj vc71/libboost_regex-vc71-s-1_45/fileiter.obj vc71/libboost_regex-vc71-s-1_45/icu.obj vc71/libboost_regex-vc71-s-1_45/instances.obj vc71/libboost_regex-vc71-s-1_45/posix_api.obj vc71/libboost_regex-vc71-s-1_45/regex.obj vc71/libboost_regex-vc71-s-1_45/regex_debug.obj vc71/libboost_regex-vc71-s-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_45/static_mutex.obj vc71/libboost_regex-vc71-s-1_45/usinstances.obj vc71/libboost_regex-vc71-s-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_45/winstances.obj +./vc71/libboost_regex-vc71-s-1_46.lib : vc71/libboost_regex-vc71-s-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/cregex.obj vc71/libboost_regex-vc71-s-1_46/fileiter.obj vc71/libboost_regex-vc71-s-1_46/icu.obj vc71/libboost_regex-vc71-s-1_46/instances.obj vc71/libboost_regex-vc71-s-1_46/posix_api.obj vc71/libboost_regex-vc71-s-1_46/regex.obj vc71/libboost_regex-vc71-s-1_46/regex_debug.obj vc71/libboost_regex-vc71-s-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_46/static_mutex.obj vc71/libboost_regex-vc71-s-1_46/usinstances.obj vc71/libboost_regex-vc71-s-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_46/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/cregex.obj vc71/libboost_regex-vc71-s-1_46/fileiter.obj vc71/libboost_regex-vc71-s-1_46/icu.obj vc71/libboost_regex-vc71-s-1_46/instances.obj vc71/libboost_regex-vc71-s-1_46/posix_api.obj vc71/libboost_regex-vc71-s-1_46/regex.obj vc71/libboost_regex-vc71-s-1_46/regex_debug.obj vc71/libboost_regex-vc71-s-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_46/static_mutex.obj vc71/libboost_regex-vc71-s-1_46/usinstances.obj vc71/libboost_regex-vc71-s-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-s-1_45.lib +# section for libboost_regex-vc71-mt-s-1_46.lib # ######################################################## -vc71/libboost_regex-vc71-mt-s-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-s-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-s-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-s-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-s-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-s-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-s-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-s-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-s-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-s-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-s-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_45/ -Fdvc71/libboost_regex-vc71-mt-s-1_45.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-s-1_45_dir : - @if not exist "vc71\libboost_regex-vc71-mt-s-1_45\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_45 +libboost_regex-vc71-mt-s-1_46_dir : + @if not exist "vc71\libboost_regex-vc71-mt-s-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_46 -libboost_regex-vc71-mt-s-1_45_clean : - del vc71\libboost_regex-vc71-mt-s-1_45\*.obj - del vc71\libboost_regex-vc71-mt-s-1_45\*.idb - del vc71\libboost_regex-vc71-mt-s-1_45\*.exp - del vc71\libboost_regex-vc71-mt-s-1_45\*.pch +libboost_regex-vc71-mt-s-1_46_clean : + del vc71\libboost_regex-vc71-mt-s-1_46\*.obj + del vc71\libboost_regex-vc71-mt-s-1_46\*.idb + del vc71\libboost_regex-vc71-mt-s-1_46\*.exp + del vc71\libboost_regex-vc71-mt-s-1_46\*.pch -./vc71/libboost_regex-vc71-mt-s-1_45.lib : vc71/libboost_regex-vc71-mt-s-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_45/cregex.obj vc71/libboost_regex-vc71-mt-s-1_45/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_45/icu.obj vc71/libboost_regex-vc71-mt-s-1_45/instances.obj vc71/libboost_regex-vc71-mt-s-1_45/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_45/regex.obj vc71/libboost_regex-vc71-mt-s-1_45/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_45/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_45/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_45/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_45.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_45/cregex.obj vc71/libboost_regex-vc71-mt-s-1_45/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_45/icu.obj vc71/libboost_regex-vc71-mt-s-1_45/instances.obj vc71/libboost_regex-vc71-mt-s-1_45/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_45/regex.obj vc71/libboost_regex-vc71-mt-s-1_45/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_45/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_45/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_45/winstances.obj +./vc71/libboost_regex-vc71-mt-s-1_46.lib : vc71/libboost_regex-vc71-mt-s-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/cregex.obj vc71/libboost_regex-vc71-mt-s-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_46/icu.obj vc71/libboost_regex-vc71-mt-s-1_46/instances.obj vc71/libboost_regex-vc71-mt-s-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_46/regex.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_46/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/cregex.obj vc71/libboost_regex-vc71-mt-s-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_46/icu.obj vc71/libboost_regex-vc71-mt-s-1_46/instances.obj vc71/libboost_regex-vc71-mt-s-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_46/regex.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc71-sgd-1_45.lib +# section for libboost_regex-vc71-sgd-1_46.lib # ######################################################## -vc71/libboost_regex-vc71-sgd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-sgd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-sgd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-sgd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-sgd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-sgd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-sgd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-sgd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-sgd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-sgd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-sgd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_45/ -Fdvc71/libboost_regex-vc71-sgd-1_45.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-sgd-1_45_dir : - @if not exist "vc71\libboost_regex-vc71-sgd-1_45\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_45 +libboost_regex-vc71-sgd-1_46_dir : + @if not exist "vc71\libboost_regex-vc71-sgd-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_46 -libboost_regex-vc71-sgd-1_45_clean : - del vc71\libboost_regex-vc71-sgd-1_45\*.obj - del vc71\libboost_regex-vc71-sgd-1_45\*.idb - del vc71\libboost_regex-vc71-sgd-1_45\*.exp - del vc71\libboost_regex-vc71-sgd-1_45\*.pch +libboost_regex-vc71-sgd-1_46_clean : + del vc71\libboost_regex-vc71-sgd-1_46\*.obj + del vc71\libboost_regex-vc71-sgd-1_46\*.idb + del vc71\libboost_regex-vc71-sgd-1_46\*.exp + del vc71\libboost_regex-vc71-sgd-1_46\*.pch -./vc71/libboost_regex-vc71-sgd-1_45.lib : vc71/libboost_regex-vc71-sgd-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_45/cregex.obj vc71/libboost_regex-vc71-sgd-1_45/fileiter.obj vc71/libboost_regex-vc71-sgd-1_45/icu.obj vc71/libboost_regex-vc71-sgd-1_45/instances.obj vc71/libboost_regex-vc71-sgd-1_45/posix_api.obj vc71/libboost_regex-vc71-sgd-1_45/regex.obj vc71/libboost_regex-vc71-sgd-1_45/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_45/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_45/usinstances.obj vc71/libboost_regex-vc71-sgd-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_45/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_45.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_45/cregex.obj vc71/libboost_regex-vc71-sgd-1_45/fileiter.obj vc71/libboost_regex-vc71-sgd-1_45/icu.obj vc71/libboost_regex-vc71-sgd-1_45/instances.obj vc71/libboost_regex-vc71-sgd-1_45/posix_api.obj vc71/libboost_regex-vc71-sgd-1_45/regex.obj vc71/libboost_regex-vc71-sgd-1_45/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_45/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_45/usinstances.obj vc71/libboost_regex-vc71-sgd-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_45/winstances.obj +./vc71/libboost_regex-vc71-sgd-1_46.lib : vc71/libboost_regex-vc71-sgd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/cregex.obj vc71/libboost_regex-vc71-sgd-1_46/fileiter.obj vc71/libboost_regex-vc71-sgd-1_46/icu.obj vc71/libboost_regex-vc71-sgd-1_46/instances.obj vc71/libboost_regex-vc71-sgd-1_46/posix_api.obj vc71/libboost_regex-vc71-sgd-1_46/regex.obj vc71/libboost_regex-vc71-sgd-1_46/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_46/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_46/usinstances.obj vc71/libboost_regex-vc71-sgd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_46/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/cregex.obj vc71/libboost_regex-vc71-sgd-1_46/fileiter.obj vc71/libboost_regex-vc71-sgd-1_46/icu.obj vc71/libboost_regex-vc71-sgd-1_46/instances.obj vc71/libboost_regex-vc71-sgd-1_46/posix_api.obj vc71/libboost_regex-vc71-sgd-1_46/regex.obj vc71/libboost_regex-vc71-sgd-1_46/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_46/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_46/usinstances.obj vc71/libboost_regex-vc71-sgd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgd-1_45.lib +# section for libboost_regex-vc71-mt-sgd-1_46.lib # ######################################################## -vc71/libboost_regex-vc71-mt-sgd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_45/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_45.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgd-1_45_dir : - @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_45\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_45 +libboost_regex-vc71-mt-sgd-1_46_dir : + @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_46 -libboost_regex-vc71-mt-sgd-1_45_clean : - del vc71\libboost_regex-vc71-mt-sgd-1_45\*.obj - del vc71\libboost_regex-vc71-mt-sgd-1_45\*.idb - del vc71\libboost_regex-vc71-mt-sgd-1_45\*.exp - del vc71\libboost_regex-vc71-mt-sgd-1_45\*.pch +libboost_regex-vc71-mt-sgd-1_46_clean : + del vc71\libboost_regex-vc71-mt-sgd-1_46\*.obj + del vc71\libboost_regex-vc71-mt-sgd-1_46\*.idb + del vc71\libboost_regex-vc71-mt-sgd-1_46\*.exp + del vc71\libboost_regex-vc71-mt-sgd-1_46\*.pch -./vc71/libboost_regex-vc71-mt-sgd-1_45.lib : vc71/libboost_regex-vc71-mt-sgd-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_45/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_45/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_45/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_45/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_45/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_45/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_45/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_45/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_45/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_45/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_45.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_45/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_45/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_45/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_45/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_45/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_45/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_45/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_45/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_45/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_45/winstances.obj +./vc71/libboost_regex-vc71-mt-sgd-1_46.lib : vc71/libboost_regex-vc71-mt-sgd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_46/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_46/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_46/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_46/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_46/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gd-1_45.lib +# section for boost_regex-vc71-mt-gd-1_46.lib # ######################################################## -vc71/boost_regex-vc71-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_45/ -Fdvc71/boost_regex-vc71-mt-gd-1_45.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gd-1_45_dir : - @if not exist "vc71\boost_regex-vc71-mt-gd-1_45\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_45 +boost_regex-vc71-mt-gd-1_46_dir : + @if not exist "vc71\boost_regex-vc71-mt-gd-1_46\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_46 -boost_regex-vc71-mt-gd-1_45_clean : - del vc71\boost_regex-vc71-mt-gd-1_45\*.obj - del vc71\boost_regex-vc71-mt-gd-1_45\*.idb - del vc71\boost_regex-vc71-mt-gd-1_45\*.exp - del vc71\boost_regex-vc71-mt-gd-1_45\*.pch +boost_regex-vc71-mt-gd-1_46_clean : + del vc71\boost_regex-vc71-mt-gd-1_46\*.obj + del vc71\boost_regex-vc71-mt-gd-1_46\*.idb + del vc71\boost_regex-vc71-mt-gd-1_46\*.exp + del vc71\boost_regex-vc71-mt-gd-1_46\*.pch -./vc71/boost_regex-vc71-mt-gd-1_45.lib : vc71/boost_regex-vc71-mt-gd-1_45/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_45/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_45/cregex.obj vc71/boost_regex-vc71-mt-gd-1_45/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_45/icu.obj vc71/boost_regex-vc71-mt-gd-1_45/instances.obj vc71/boost_regex-vc71-mt-gd-1_45/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_45/regex.obj vc71/boost_regex-vc71-mt-gd-1_45/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_45/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_45/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_45/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_45/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_45/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_45/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_45/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71/boost_regex-vc71-mt-gd-1_45.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_45.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_45/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_45/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_45/cregex.obj vc71/boost_regex-vc71-mt-gd-1_45/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_45/icu.obj vc71/boost_regex-vc71-mt-gd-1_45/instances.obj vc71/boost_regex-vc71-mt-gd-1_45/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_45/regex.obj vc71/boost_regex-vc71-mt-gd-1_45/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_45/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_45/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_45/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_45/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_45/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_45/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_45/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_45/winstances.obj +./vc71/boost_regex-vc71-mt-gd-1_46.lib : vc71/boost_regex-vc71-mt-gd-1_46/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/cregex.obj vc71/boost_regex-vc71-mt-gd-1_46/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_46/icu.obj vc71/boost_regex-vc71-mt-gd-1_46/instances.obj vc71/boost_regex-vc71-mt-gd-1_46/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_46/regex.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_46/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_46/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71/boost_regex-vc71-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_46.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_46/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/cregex.obj vc71/boost_regex-vc71-mt-gd-1_46/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_46/icu.obj vc71/boost_regex-vc71-mt-gd-1_46/instances.obj vc71/boost_regex-vc71-mt-gd-1_46/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_46/regex.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_46/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_46/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-1_45.lib +# section for boost_regex-vc71-mt-1_46.lib # ######################################################## -vc71/boost_regex-vc71-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_45/ -Fdvc71/boost_regex-vc71-mt-1_45.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/winstances.cpp -boost_regex-vc71-mt-1_45_dir : - @if not exist "vc71\boost_regex-vc71-mt-1_45\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_45 +boost_regex-vc71-mt-1_46_dir : + @if not exist "vc71\boost_regex-vc71-mt-1_46\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_46 -boost_regex-vc71-mt-1_45_clean : - del vc71\boost_regex-vc71-mt-1_45\*.obj - del vc71\boost_regex-vc71-mt-1_45\*.idb - del vc71\boost_regex-vc71-mt-1_45\*.exp - del vc71\boost_regex-vc71-mt-1_45\*.pch +boost_regex-vc71-mt-1_46_clean : + del vc71\boost_regex-vc71-mt-1_46\*.obj + del vc71\boost_regex-vc71-mt-1_46\*.idb + del vc71\boost_regex-vc71-mt-1_46\*.exp + del vc71\boost_regex-vc71-mt-1_46\*.pch -./vc71/boost_regex-vc71-mt-1_45.lib : vc71/boost_regex-vc71-mt-1_45/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_45/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_45/cregex.obj vc71/boost_regex-vc71-mt-1_45/fileiter.obj vc71/boost_regex-vc71-mt-1_45/icu.obj vc71/boost_regex-vc71-mt-1_45/instances.obj vc71/boost_regex-vc71-mt-1_45/posix_api.obj vc71/boost_regex-vc71-mt-1_45/regex.obj vc71/boost_regex-vc71-mt-1_45/regex_debug.obj vc71/boost_regex-vc71-mt-1_45/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_45/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_45/static_mutex.obj vc71/boost_regex-vc71-mt-1_45/usinstances.obj vc71/boost_regex-vc71-mt-1_45/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_45/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_45/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71/boost_regex-vc71-mt-1_45.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_45.dll" /implib:"vc71/boost_regex-vc71-mt-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_45/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_45/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_45/cregex.obj vc71/boost_regex-vc71-mt-1_45/fileiter.obj vc71/boost_regex-vc71-mt-1_45/icu.obj vc71/boost_regex-vc71-mt-1_45/instances.obj vc71/boost_regex-vc71-mt-1_45/posix_api.obj vc71/boost_regex-vc71-mt-1_45/regex.obj vc71/boost_regex-vc71-mt-1_45/regex_debug.obj vc71/boost_regex-vc71-mt-1_45/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_45/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_45/static_mutex.obj vc71/boost_regex-vc71-mt-1_45/usinstances.obj vc71/boost_regex-vc71-mt-1_45/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_45/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_45/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_45/winstances.obj +./vc71/boost_regex-vc71-mt-1_46.lib : vc71/boost_regex-vc71-mt-1_46/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/cregex.obj vc71/boost_regex-vc71-mt-1_46/fileiter.obj vc71/boost_regex-vc71-mt-1_46/icu.obj vc71/boost_regex-vc71-mt-1_46/instances.obj vc71/boost_regex-vc71-mt-1_46/posix_api.obj vc71/boost_regex-vc71-mt-1_46/regex.obj vc71/boost_regex-vc71-mt-1_46/regex_debug.obj vc71/boost_regex-vc71-mt-1_46/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_46/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_46/static_mutex.obj vc71/boost_regex-vc71-mt-1_46/usinstances.obj vc71/boost_regex-vc71-mt-1_46/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71/boost_regex-vc71-mt-1_46.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_46.dll" /implib:"vc71/boost_regex-vc71-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_46/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/cregex.obj vc71/boost_regex-vc71-mt-1_46/fileiter.obj vc71/boost_regex-vc71-mt-1_46/icu.obj vc71/boost_regex-vc71-mt-1_46/instances.obj vc71/boost_regex-vc71-mt-1_46/posix_api.obj vc71/boost_regex-vc71-mt-1_46/regex.obj vc71/boost_regex-vc71-mt-1_46/regex_debug.obj vc71/boost_regex-vc71-mt-1_46/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_46/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_46/static_mutex.obj vc71/boost_regex-vc71-mt-1_46/usinstances.obj vc71/boost_regex-vc71-mt-1_46/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-1_45.lib +# section for libboost_regex-vc71-mt-1_46.lib # ######################################################## -vc71/libboost_regex-vc71-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_45/ -Fdvc71/libboost_regex-vc71-mt-1_45.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-1_45_dir : - @if not exist "vc71\libboost_regex-vc71-mt-1_45\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_45 +libboost_regex-vc71-mt-1_46_dir : + @if not exist "vc71\libboost_regex-vc71-mt-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_46 -libboost_regex-vc71-mt-1_45_clean : - del vc71\libboost_regex-vc71-mt-1_45\*.obj - del vc71\libboost_regex-vc71-mt-1_45\*.idb - del vc71\libboost_regex-vc71-mt-1_45\*.exp - del vc71\libboost_regex-vc71-mt-1_45\*.pch +libboost_regex-vc71-mt-1_46_clean : + del vc71\libboost_regex-vc71-mt-1_46\*.obj + del vc71\libboost_regex-vc71-mt-1_46\*.idb + del vc71\libboost_regex-vc71-mt-1_46\*.exp + del vc71\libboost_regex-vc71-mt-1_46\*.pch -./vc71/libboost_regex-vc71-mt-1_45.lib : vc71/libboost_regex-vc71-mt-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_45/cregex.obj vc71/libboost_regex-vc71-mt-1_45/fileiter.obj vc71/libboost_regex-vc71-mt-1_45/icu.obj vc71/libboost_regex-vc71-mt-1_45/instances.obj vc71/libboost_regex-vc71-mt-1_45/posix_api.obj vc71/libboost_regex-vc71-mt-1_45/regex.obj vc71/libboost_regex-vc71-mt-1_45/regex_debug.obj vc71/libboost_regex-vc71-mt-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_45/static_mutex.obj vc71/libboost_regex-vc71-mt-1_45/usinstances.obj vc71/libboost_regex-vc71-mt-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_45/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_45.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_45/cregex.obj vc71/libboost_regex-vc71-mt-1_45/fileiter.obj vc71/libboost_regex-vc71-mt-1_45/icu.obj vc71/libboost_regex-vc71-mt-1_45/instances.obj vc71/libboost_regex-vc71-mt-1_45/posix_api.obj vc71/libboost_regex-vc71-mt-1_45/regex.obj vc71/libboost_regex-vc71-mt-1_45/regex_debug.obj vc71/libboost_regex-vc71-mt-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_45/static_mutex.obj vc71/libboost_regex-vc71-mt-1_45/usinstances.obj vc71/libboost_regex-vc71-mt-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_45/winstances.obj +./vc71/libboost_regex-vc71-mt-1_46.lib : vc71/libboost_regex-vc71-mt-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/cregex.obj vc71/libboost_regex-vc71-mt-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-1_46/icu.obj vc71/libboost_regex-vc71-mt-1_46/instances.obj vc71/libboost_regex-vc71-mt-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-1_46/regex.obj vc71/libboost_regex-vc71-mt-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_46/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/cregex.obj vc71/libboost_regex-vc71-mt-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-1_46/icu.obj vc71/libboost_regex-vc71-mt-1_46/instances.obj vc71/libboost_regex-vc71-mt-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-1_46/regex.obj vc71/libboost_regex-vc71-mt-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gd-1_45.lib +# section for libboost_regex-vc71-mt-gd-1_46.lib # ######################################################## -vc71/libboost_regex-vc71-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_45/ -Fdvc71/libboost_regex-vc71-mt-gd-1_45.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gd-1_45_dir : - @if not exist "vc71\libboost_regex-vc71-mt-gd-1_45\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_45 +libboost_regex-vc71-mt-gd-1_46_dir : + @if not exist "vc71\libboost_regex-vc71-mt-gd-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_46 -libboost_regex-vc71-mt-gd-1_45_clean : - del vc71\libboost_regex-vc71-mt-gd-1_45\*.obj - del vc71\libboost_regex-vc71-mt-gd-1_45\*.idb - del vc71\libboost_regex-vc71-mt-gd-1_45\*.exp - del vc71\libboost_regex-vc71-mt-gd-1_45\*.pch +libboost_regex-vc71-mt-gd-1_46_clean : + del vc71\libboost_regex-vc71-mt-gd-1_46\*.obj + del vc71\libboost_regex-vc71-mt-gd-1_46\*.idb + del vc71\libboost_regex-vc71-mt-gd-1_46\*.exp + del vc71\libboost_regex-vc71-mt-gd-1_46\*.pch -./vc71/libboost_regex-vc71-mt-gd-1_45.lib : vc71/libboost_regex-vc71-mt-gd-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_45/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_45/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_45/icu.obj vc71/libboost_regex-vc71-mt-gd-1_45/instances.obj vc71/libboost_regex-vc71-mt-gd-1_45/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_45/regex.obj vc71/libboost_regex-vc71-mt-gd-1_45/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_45/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_45/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_45/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_45.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_45/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_45/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_45/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_45/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_45/icu.obj vc71/libboost_regex-vc71-mt-gd-1_45/instances.obj vc71/libboost_regex-vc71-mt-gd-1_45/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_45/regex.obj vc71/libboost_regex-vc71-mt-gd-1_45/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_45/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_45/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_45/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_45/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_45/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_45/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_45/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_45/winstances.obj +./vc71/libboost_regex-vc71-mt-gd-1_46.lib : vc71/libboost_regex-vc71-mt-gd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_46/icu.obj vc71/libboost_regex-vc71-mt-gd-1_46/instances.obj vc71/libboost_regex-vc71-mt-gd-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_46/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_46/icu.obj vc71/libboost_regex-vc71-mt-gd-1_46/instances.obj vc71/libboost_regex-vc71-mt-gd-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_46/winstances.obj diff --git a/build/vc8.mak b/build/vc8.mak index 0cfdb83f..4b611121 100644 --- a/build/vc8.mak +++ b/build/vc8.mak @@ -3,7 +3,7 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt. # -# auto generated makefile for VC6 compiler +# auto generated makefile for MSVC compiler # # usage: # make @@ -62,20 +62,25 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc80-mt-s-1_45_dir ./vc80/libboost_regex-vc80-mt-s-1_45.lib libboost_regex-vc80-mt-sgd-1_45_dir ./vc80/libboost_regex-vc80-mt-sgd-1_45.lib boost_regex-vc80-mt-gd-1_45_dir ./vc80/boost_regex-vc80-mt-gd-1_45.lib boost_regex-vc80-mt-1_45_dir ./vc80/boost_regex-vc80-mt-1_45.lib libboost_regex-vc80-mt-1_45_dir ./vc80/libboost_regex-vc80-mt-1_45.lib libboost_regex-vc80-mt-gd-1_45_dir ./vc80/libboost_regex-vc80-mt-gd-1_45.lib +all : main_dir libboost_regex-vc80-s-1_46_dir ./vc80/libboost_regex-vc80-s-1_46.lib libboost_regex-vc80-mt-s-1_46_dir ./vc80/libboost_regex-vc80-mt-s-1_46.lib libboost_regex-vc80-sgd-1_46_dir ./vc80/libboost_regex-vc80-sgd-1_46.lib libboost_regex-vc80-mt-sgd-1_46_dir ./vc80/libboost_regex-vc80-mt-sgd-1_46.lib boost_regex-vc80-mt-gd-1_46_dir ./vc80/boost_regex-vc80-mt-gd-1_46.lib boost_regex-vc80-mt-1_46_dir ./vc80/boost_regex-vc80-mt-1_46.lib libboost_regex-vc80-mt-1_46_dir ./vc80/libboost_regex-vc80-mt-1_46.lib libboost_regex-vc80-mt-gd-1_46_dir ./vc80/libboost_regex-vc80-mt-gd-1_46.lib -clean : libboost_regex-vc80-mt-s-1_45_clean libboost_regex-vc80-mt-sgd-1_45_clean boost_regex-vc80-mt-gd-1_45_clean boost_regex-vc80-mt-1_45_clean libboost_regex-vc80-mt-1_45_clean libboost_regex-vc80-mt-gd-1_45_clean +clean : libboost_regex-vc80-s-1_46_clean libboost_regex-vc80-mt-s-1_46_clean libboost_regex-vc80-sgd-1_46_clean libboost_regex-vc80-mt-sgd-1_46_clean boost_regex-vc80-mt-gd-1_46_clean boost_regex-vc80-mt-1_46_clean libboost_regex-vc80-mt-1_46_clean libboost_regex-vc80-mt-gd-1_46_clean install : all - copy vc80\libboost_regex-vc80-mt-s-1_45.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-sgd-1_45.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_45.dll "$(MSVCDIR)\bin" - copy vc80\boost_regex-vc80-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-1_45.dll "$(MSVCDIR)\bin" - copy vc80\libboost_regex-vc80-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_45.pdb "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-s-1_46.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-s-1_46.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-sgd-1_46.pdb "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-sgd-1_46.pdb "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_46.dll "$(MSVCDIR)\bin" + copy vc80\boost_regex-vc80-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-1_46.dll "$(MSVCDIR)\bin" + copy vc80\libboost_regex-vc80-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_46.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc80\$(NULL)" mkdir vc80 @@ -83,409 +88,545 @@ main_dir : ######################################################## # -# section for libboost_regex-vc80-mt-s-1_45.lib +# section for libboost_regex-vc80-s-1_46.lib # ######################################################## -vc80/libboost_regex-vc80-mt-s-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-s-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-s-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-s-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-s-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-s-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-s-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-s-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-s-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-s-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-s-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_45/ -Fdvc80/libboost_regex-vc80-mt-s-1_45.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-s-1_45_dir : - @if not exist "vc80\libboost_regex-vc80-mt-s-1_45\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_45 +libboost_regex-vc80-s-1_46_dir : + @if not exist "vc80\libboost_regex-vc80-s-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-s-1_46 -libboost_regex-vc80-mt-s-1_45_clean : - del vc80\libboost_regex-vc80-mt-s-1_45\*.obj - del vc80\libboost_regex-vc80-mt-s-1_45\*.idb - del vc80\libboost_regex-vc80-mt-s-1_45\*.exp - del vc80\libboost_regex-vc80-mt-s-1_45\*.pch +libboost_regex-vc80-s-1_46_clean : + del vc80\libboost_regex-vc80-s-1_46\*.obj + del vc80\libboost_regex-vc80-s-1_46\*.idb + del vc80\libboost_regex-vc80-s-1_46\*.exp + del vc80\libboost_regex-vc80-s-1_46\*.pch -./vc80/libboost_regex-vc80-mt-s-1_45.lib : vc80/libboost_regex-vc80-mt-s-1_45/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_45/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_45/cregex.obj vc80/libboost_regex-vc80-mt-s-1_45/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_45/icu.obj vc80/libboost_regex-vc80-mt-s-1_45/instances.obj vc80/libboost_regex-vc80-mt-s-1_45/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_45/regex.obj vc80/libboost_regex-vc80-mt-s-1_45/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_45/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_45/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_45/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_45/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_45/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_45/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_45/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_45/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_45.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_45/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_45/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_45/cregex.obj vc80/libboost_regex-vc80-mt-s-1_45/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_45/icu.obj vc80/libboost_regex-vc80-mt-s-1_45/instances.obj vc80/libboost_regex-vc80-mt-s-1_45/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_45/regex.obj vc80/libboost_regex-vc80-mt-s-1_45/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_45/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_45/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_45/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_45/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_45/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_45/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_45/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_45/winstances.obj +./vc80/libboost_regex-vc80-s-1_46.lib : vc80/libboost_regex-vc80-s-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/cregex.obj vc80/libboost_regex-vc80-s-1_46/fileiter.obj vc80/libboost_regex-vc80-s-1_46/icu.obj vc80/libboost_regex-vc80-s-1_46/instances.obj vc80/libboost_regex-vc80-s-1_46/posix_api.obj vc80/libboost_regex-vc80-s-1_46/regex.obj vc80/libboost_regex-vc80-s-1_46/regex_debug.obj vc80/libboost_regex-vc80-s-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-s-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-s-1_46/static_mutex.obj vc80/libboost_regex-vc80-s-1_46/usinstances.obj vc80/libboost_regex-vc80-s-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-s-1_46/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-s-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-s-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/cregex.obj vc80/libboost_regex-vc80-s-1_46/fileiter.obj vc80/libboost_regex-vc80-s-1_46/icu.obj vc80/libboost_regex-vc80-s-1_46/instances.obj vc80/libboost_regex-vc80-s-1_46/posix_api.obj vc80/libboost_regex-vc80-s-1_46/regex.obj vc80/libboost_regex-vc80-s-1_46/regex_debug.obj vc80/libboost_regex-vc80-s-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-s-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-s-1_46/static_mutex.obj vc80/libboost_regex-vc80-s-1_46/usinstances.obj vc80/libboost_regex-vc80-s-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-s-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-sgd-1_45.lib +# section for libboost_regex-vc80-mt-s-1_46.lib # ######################################################## -vc80/libboost_regex-vc80-mt-sgd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_45/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_45.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-sgd-1_45_dir : - @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_45\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_45 +libboost_regex-vc80-mt-s-1_46_dir : + @if not exist "vc80\libboost_regex-vc80-mt-s-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_46 -libboost_regex-vc80-mt-sgd-1_45_clean : - del vc80\libboost_regex-vc80-mt-sgd-1_45\*.obj - del vc80\libboost_regex-vc80-mt-sgd-1_45\*.idb - del vc80\libboost_regex-vc80-mt-sgd-1_45\*.exp - del vc80\libboost_regex-vc80-mt-sgd-1_45\*.pch +libboost_regex-vc80-mt-s-1_46_clean : + del vc80\libboost_regex-vc80-mt-s-1_46\*.obj + del vc80\libboost_regex-vc80-mt-s-1_46\*.idb + del vc80\libboost_regex-vc80-mt-s-1_46\*.exp + del vc80\libboost_regex-vc80-mt-s-1_46\*.pch -./vc80/libboost_regex-vc80-mt-sgd-1_45.lib : vc80/libboost_regex-vc80-mt-sgd-1_45/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_45/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_45/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_45/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_45/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_45/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_45/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_45/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_45/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_45/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_45/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_45/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_45/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_45/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_45/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_45/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_45/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_45.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_45/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_45/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_45/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_45/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_45/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_45/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_45/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_45/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_45/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_45/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_45/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_45/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_45/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_45/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_45/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_45/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_45/winstances.obj +./vc80/libboost_regex-vc80-mt-s-1_46.lib : vc80/libboost_regex-vc80-mt-s-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/cregex.obj vc80/libboost_regex-vc80-mt-s-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_46/icu.obj vc80/libboost_regex-vc80-mt-s-1_46/instances.obj vc80/libboost_regex-vc80-mt-s-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_46/regex.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_46/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/cregex.obj vc80/libboost_regex-vc80-mt-s-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_46/icu.obj vc80/libboost_regex-vc80-mt-s-1_46/instances.obj vc80/libboost_regex-vc80-mt-s-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_46/regex.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-gd-1_45.lib +# section for libboost_regex-vc80-sgd-1_46.lib # ######################################################## -vc80/boost_regex-vc80-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_45/ -Fdvc80/boost_regex-vc80-mt-gd-1_45.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/winstances.cpp -boost_regex-vc80-mt-gd-1_45_dir : - @if not exist "vc80\boost_regex-vc80-mt-gd-1_45\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_45 +libboost_regex-vc80-sgd-1_46_dir : + @if not exist "vc80\libboost_regex-vc80-sgd-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-sgd-1_46 -boost_regex-vc80-mt-gd-1_45_clean : - del vc80\boost_regex-vc80-mt-gd-1_45\*.obj - del vc80\boost_regex-vc80-mt-gd-1_45\*.idb - del vc80\boost_regex-vc80-mt-gd-1_45\*.exp - del vc80\boost_regex-vc80-mt-gd-1_45\*.pch +libboost_regex-vc80-sgd-1_46_clean : + del vc80\libboost_regex-vc80-sgd-1_46\*.obj + del vc80\libboost_regex-vc80-sgd-1_46\*.idb + del vc80\libboost_regex-vc80-sgd-1_46\*.exp + del vc80\libboost_regex-vc80-sgd-1_46\*.pch -./vc80/boost_regex-vc80-mt-gd-1_45.lib : vc80/boost_regex-vc80-mt-gd-1_45/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_45/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_45/cregex.obj vc80/boost_regex-vc80-mt-gd-1_45/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_45/icu.obj vc80/boost_regex-vc80-mt-gd-1_45/instances.obj vc80/boost_regex-vc80-mt-gd-1_45/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_45/regex.obj vc80/boost_regex-vc80-mt-gd-1_45/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_45/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_45/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_45/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_45/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_45/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_45/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_45/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc80/boost_regex-vc80-mt-gd-1_45.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_45.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_45/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_45/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_45/cregex.obj vc80/boost_regex-vc80-mt-gd-1_45/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_45/icu.obj vc80/boost_regex-vc80-mt-gd-1_45/instances.obj vc80/boost_regex-vc80-mt-gd-1_45/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_45/regex.obj vc80/boost_regex-vc80-mt-gd-1_45/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_45/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_45/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_45/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_45/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_45/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_45/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_45/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_45/winstances.obj +./vc80/libboost_regex-vc80-sgd-1_46.lib : vc80/libboost_regex-vc80-sgd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/cregex.obj vc80/libboost_regex-vc80-sgd-1_46/fileiter.obj vc80/libboost_regex-vc80-sgd-1_46/icu.obj vc80/libboost_regex-vc80-sgd-1_46/instances.obj vc80/libboost_regex-vc80-sgd-1_46/posix_api.obj vc80/libboost_regex-vc80-sgd-1_46/regex.obj vc80/libboost_regex-vc80-sgd-1_46/regex_debug.obj vc80/libboost_regex-vc80-sgd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-sgd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-sgd-1_46/static_mutex.obj vc80/libboost_regex-vc80-sgd-1_46/usinstances.obj vc80/libboost_regex-vc80-sgd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-sgd-1_46/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-sgd-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-sgd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/cregex.obj vc80/libboost_regex-vc80-sgd-1_46/fileiter.obj vc80/libboost_regex-vc80-sgd-1_46/icu.obj vc80/libboost_regex-vc80-sgd-1_46/instances.obj vc80/libboost_regex-vc80-sgd-1_46/posix_api.obj vc80/libboost_regex-vc80-sgd-1_46/regex.obj vc80/libboost_regex-vc80-sgd-1_46/regex_debug.obj vc80/libboost_regex-vc80-sgd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-sgd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-sgd-1_46/static_mutex.obj vc80/libboost_regex-vc80-sgd-1_46/usinstances.obj vc80/libboost_regex-vc80-sgd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-sgd-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-1_45.lib +# section for libboost_regex-vc80-mt-sgd-1_46.lib # ######################################################## -vc80/boost_regex-vc80-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_45/ -Fdvc80/boost_regex-vc80-mt-1_45.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/winstances.cpp -boost_regex-vc80-mt-1_45_dir : - @if not exist "vc80\boost_regex-vc80-mt-1_45\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_45 +libboost_regex-vc80-mt-sgd-1_46_dir : + @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_46 -boost_regex-vc80-mt-1_45_clean : - del vc80\boost_regex-vc80-mt-1_45\*.obj - del vc80\boost_regex-vc80-mt-1_45\*.idb - del vc80\boost_regex-vc80-mt-1_45\*.exp - del vc80\boost_regex-vc80-mt-1_45\*.pch +libboost_regex-vc80-mt-sgd-1_46_clean : + del vc80\libboost_regex-vc80-mt-sgd-1_46\*.obj + del vc80\libboost_regex-vc80-mt-sgd-1_46\*.idb + del vc80\libboost_regex-vc80-mt-sgd-1_46\*.exp + del vc80\libboost_regex-vc80-mt-sgd-1_46\*.pch -./vc80/boost_regex-vc80-mt-1_45.lib : vc80/boost_regex-vc80-mt-1_45/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_45/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_45/cregex.obj vc80/boost_regex-vc80-mt-1_45/fileiter.obj vc80/boost_regex-vc80-mt-1_45/icu.obj vc80/boost_regex-vc80-mt-1_45/instances.obj vc80/boost_regex-vc80-mt-1_45/posix_api.obj vc80/boost_regex-vc80-mt-1_45/regex.obj vc80/boost_regex-vc80-mt-1_45/regex_debug.obj vc80/boost_regex-vc80-mt-1_45/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_45/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_45/static_mutex.obj vc80/boost_regex-vc80-mt-1_45/usinstances.obj vc80/boost_regex-vc80-mt-1_45/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_45/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_45/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc80/boost_regex-vc80-mt-1_45.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_45.dll" /implib:"vc80/boost_regex-vc80-mt-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_45/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_45/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_45/cregex.obj vc80/boost_regex-vc80-mt-1_45/fileiter.obj vc80/boost_regex-vc80-mt-1_45/icu.obj vc80/boost_regex-vc80-mt-1_45/instances.obj vc80/boost_regex-vc80-mt-1_45/posix_api.obj vc80/boost_regex-vc80-mt-1_45/regex.obj vc80/boost_regex-vc80-mt-1_45/regex_debug.obj vc80/boost_regex-vc80-mt-1_45/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_45/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_45/static_mutex.obj vc80/boost_regex-vc80-mt-1_45/usinstances.obj vc80/boost_regex-vc80-mt-1_45/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_45/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_45/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_45/winstances.obj +./vc80/libboost_regex-vc80-mt-sgd-1_46.lib : vc80/libboost_regex-vc80-mt-sgd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_46/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_46/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_46/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_46/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_46/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-1_45.lib +# section for boost_regex-vc80-mt-gd-1_46.lib # ######################################################## -vc80/libboost_regex-vc80-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_45/ -Fdvc80/libboost_regex-vc80-mt-1_45.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-1_45_dir : - @if not exist "vc80\libboost_regex-vc80-mt-1_45\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_45 +boost_regex-vc80-mt-gd-1_46_dir : + @if not exist "vc80\boost_regex-vc80-mt-gd-1_46\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_46 -libboost_regex-vc80-mt-1_45_clean : - del vc80\libboost_regex-vc80-mt-1_45\*.obj - del vc80\libboost_regex-vc80-mt-1_45\*.idb - del vc80\libboost_regex-vc80-mt-1_45\*.exp - del vc80\libboost_regex-vc80-mt-1_45\*.pch +boost_regex-vc80-mt-gd-1_46_clean : + del vc80\boost_regex-vc80-mt-gd-1_46\*.obj + del vc80\boost_regex-vc80-mt-gd-1_46\*.idb + del vc80\boost_regex-vc80-mt-gd-1_46\*.exp + del vc80\boost_regex-vc80-mt-gd-1_46\*.pch -./vc80/libboost_regex-vc80-mt-1_45.lib : vc80/libboost_regex-vc80-mt-1_45/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_45/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_45/cregex.obj vc80/libboost_regex-vc80-mt-1_45/fileiter.obj vc80/libboost_regex-vc80-mt-1_45/icu.obj vc80/libboost_regex-vc80-mt-1_45/instances.obj vc80/libboost_regex-vc80-mt-1_45/posix_api.obj vc80/libboost_regex-vc80-mt-1_45/regex.obj vc80/libboost_regex-vc80-mt-1_45/regex_debug.obj vc80/libboost_regex-vc80-mt-1_45/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_45/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_45/static_mutex.obj vc80/libboost_regex-vc80-mt-1_45/usinstances.obj vc80/libboost_regex-vc80-mt-1_45/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_45/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_45/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_45/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_45.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_45/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_45/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_45/cregex.obj vc80/libboost_regex-vc80-mt-1_45/fileiter.obj vc80/libboost_regex-vc80-mt-1_45/icu.obj vc80/libboost_regex-vc80-mt-1_45/instances.obj vc80/libboost_regex-vc80-mt-1_45/posix_api.obj vc80/libboost_regex-vc80-mt-1_45/regex.obj vc80/libboost_regex-vc80-mt-1_45/regex_debug.obj vc80/libboost_regex-vc80-mt-1_45/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_45/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_45/static_mutex.obj vc80/libboost_regex-vc80-mt-1_45/usinstances.obj vc80/libboost_regex-vc80-mt-1_45/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_45/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_45/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_45/winstances.obj +./vc80/boost_regex-vc80-mt-gd-1_46.lib : vc80/boost_regex-vc80-mt-gd-1_46/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/cregex.obj vc80/boost_regex-vc80-mt-gd-1_46/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_46/icu.obj vc80/boost_regex-vc80-mt-gd-1_46/instances.obj vc80/boost_regex-vc80-mt-gd-1_46/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_46/regex.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_46/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_46/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc80/boost_regex-vc80-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_46.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_46/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/cregex.obj vc80/boost_regex-vc80-mt-gd-1_46/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_46/icu.obj vc80/boost_regex-vc80-mt-gd-1_46/instances.obj vc80/boost_regex-vc80-mt-gd-1_46/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_46/regex.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_46/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_46/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-gd-1_45.lib +# section for boost_regex-vc80-mt-1_46.lib # ######################################################## -vc80/libboost_regex-vc80-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_45/ -Fdvc80/libboost_regex-vc80-mt-gd-1_45.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-gd-1_45_dir : - @if not exist "vc80\libboost_regex-vc80-mt-gd-1_45\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_45 +boost_regex-vc80-mt-1_46_dir : + @if not exist "vc80\boost_regex-vc80-mt-1_46\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_46 -libboost_regex-vc80-mt-gd-1_45_clean : - del vc80\libboost_regex-vc80-mt-gd-1_45\*.obj - del vc80\libboost_regex-vc80-mt-gd-1_45\*.idb - del vc80\libboost_regex-vc80-mt-gd-1_45\*.exp - del vc80\libboost_regex-vc80-mt-gd-1_45\*.pch +boost_regex-vc80-mt-1_46_clean : + del vc80\boost_regex-vc80-mt-1_46\*.obj + del vc80\boost_regex-vc80-mt-1_46\*.idb + del vc80\boost_regex-vc80-mt-1_46\*.exp + del vc80\boost_regex-vc80-mt-1_46\*.pch -./vc80/libboost_regex-vc80-mt-gd-1_45.lib : vc80/libboost_regex-vc80-mt-gd-1_45/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_45/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_45/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_45/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_45/icu.obj vc80/libboost_regex-vc80-mt-gd-1_45/instances.obj vc80/libboost_regex-vc80-mt-gd-1_45/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_45/regex.obj vc80/libboost_regex-vc80-mt-gd-1_45/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_45/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_45/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_45/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_45/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_45/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_45/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_45/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_45/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_45.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_45/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_45/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_45/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_45/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_45/icu.obj vc80/libboost_regex-vc80-mt-gd-1_45/instances.obj vc80/libboost_regex-vc80-mt-gd-1_45/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_45/regex.obj vc80/libboost_regex-vc80-mt-gd-1_45/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_45/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_45/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_45/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_45/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_45/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_45/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_45/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_45/winstances.obj +./vc80/boost_regex-vc80-mt-1_46.lib : vc80/boost_regex-vc80-mt-1_46/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/cregex.obj vc80/boost_regex-vc80-mt-1_46/fileiter.obj vc80/boost_regex-vc80-mt-1_46/icu.obj vc80/boost_regex-vc80-mt-1_46/instances.obj vc80/boost_regex-vc80-mt-1_46/posix_api.obj vc80/boost_regex-vc80-mt-1_46/regex.obj vc80/boost_regex-vc80-mt-1_46/regex_debug.obj vc80/boost_regex-vc80-mt-1_46/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_46/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_46/static_mutex.obj vc80/boost_regex-vc80-mt-1_46/usinstances.obj vc80/boost_regex-vc80-mt-1_46/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc80/boost_regex-vc80-mt-1_46.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_46.dll" /implib:"vc80/boost_regex-vc80-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_46/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/cregex.obj vc80/boost_regex-vc80-mt-1_46/fileiter.obj vc80/boost_regex-vc80-mt-1_46/icu.obj vc80/boost_regex-vc80-mt-1_46/instances.obj vc80/boost_regex-vc80-mt-1_46/posix_api.obj vc80/boost_regex-vc80-mt-1_46/regex.obj vc80/boost_regex-vc80-mt-1_46/regex_debug.obj vc80/boost_regex-vc80-mt-1_46/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_46/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_46/static_mutex.obj vc80/boost_regex-vc80-mt-1_46/usinstances.obj vc80/boost_regex-vc80-mt-1_46/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_46/winstances.obj + +######################################################## +# +# section for libboost_regex-vc80-mt-1_46.lib +# +######################################################## +vc80/libboost_regex-vc80-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/c_regex_traits.cpp + +vc80/libboost_regex-vc80-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/cpp_regex_traits.cpp + +vc80/libboost_regex-vc80-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/cregex.cpp + +vc80/libboost_regex-vc80-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/fileiter.cpp + +vc80/libboost_regex-vc80-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/icu.cpp + +vc80/libboost_regex-vc80-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/instances.cpp + +vc80/libboost_regex-vc80-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/posix_api.cpp + +vc80/libboost_regex-vc80-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/regex.cpp + +vc80/libboost_regex-vc80-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/regex_debug.cpp + +vc80/libboost_regex-vc80-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/regex_raw_buffer.cpp + +vc80/libboost_regex-vc80-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/regex_traits_defaults.cpp + +vc80/libboost_regex-vc80-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/static_mutex.cpp + +vc80/libboost_regex-vc80-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/usinstances.cpp + +vc80/libboost_regex-vc80-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/w32_regex_traits.cpp + +vc80/libboost_regex-vc80-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/wc_regex_traits.cpp + +vc80/libboost_regex-vc80-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/wide_posix_api.cpp + +vc80/libboost_regex-vc80-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/winstances.cpp + +libboost_regex-vc80-mt-1_46_dir : + @if not exist "vc80\libboost_regex-vc80-mt-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_46 + +libboost_regex-vc80-mt-1_46_clean : + del vc80\libboost_regex-vc80-mt-1_46\*.obj + del vc80\libboost_regex-vc80-mt-1_46\*.idb + del vc80\libboost_regex-vc80-mt-1_46\*.exp + del vc80\libboost_regex-vc80-mt-1_46\*.pch + +./vc80/libboost_regex-vc80-mt-1_46.lib : vc80/libboost_regex-vc80-mt-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/cregex.obj vc80/libboost_regex-vc80-mt-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-1_46/icu.obj vc80/libboost_regex-vc80-mt-1_46/instances.obj vc80/libboost_regex-vc80-mt-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-1_46/regex.obj vc80/libboost_regex-vc80-mt-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_46/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/cregex.obj vc80/libboost_regex-vc80-mt-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-1_46/icu.obj vc80/libboost_regex-vc80-mt-1_46/instances.obj vc80/libboost_regex-vc80-mt-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-1_46/regex.obj vc80/libboost_regex-vc80-mt-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_46/winstances.obj + +######################################################## +# +# section for libboost_regex-vc80-mt-gd-1_46.lib +# +######################################################## +vc80/libboost_regex-vc80-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/c_regex_traits.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/cregex.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/fileiter.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/icu.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/instances.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/posix_api.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/regex.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/regex_debug.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/static_mutex.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/usinstances.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/wide_posix_api.cpp + +vc80/libboost_regex-vc80-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/winstances.cpp + +libboost_regex-vc80-mt-gd-1_46_dir : + @if not exist "vc80\libboost_regex-vc80-mt-gd-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_46 + +libboost_regex-vc80-mt-gd-1_46_clean : + del vc80\libboost_regex-vc80-mt-gd-1_46\*.obj + del vc80\libboost_regex-vc80-mt-gd-1_46\*.idb + del vc80\libboost_regex-vc80-mt-gd-1_46\*.exp + del vc80\libboost_regex-vc80-mt-gd-1_46\*.pch + +./vc80/libboost_regex-vc80-mt-gd-1_46.lib : vc80/libboost_regex-vc80-mt-gd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_46/icu.obj vc80/libboost_regex-vc80-mt-gd-1_46/instances.obj vc80/libboost_regex-vc80-mt-gd-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_46/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_46/icu.obj vc80/libboost_regex-vc80-mt-gd-1_46/instances.obj vc80/libboost_regex-vc80-mt-gd-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_46/winstances.obj diff --git a/build/vc9.mak b/build/vc9.mak index dc9f3daa..b333dd48 100644 --- a/build/vc9.mak +++ b/build/vc9.mak @@ -3,7 +3,7 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt. # -# auto generated makefile for VC6 compiler +# auto generated makefile for MSVC compiler # # usage: # make @@ -62,25 +62,20 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc90-s-1_45_dir ./vc90/libboost_regex-vc90-s-1_45.lib libboost_regex-vc90-mt-s-1_45_dir ./vc90/libboost_regex-vc90-mt-s-1_45.lib libboost_regex-vc90-sgd-1_45_dir ./vc90/libboost_regex-vc90-sgd-1_45.lib libboost_regex-vc90-mt-sgd-1_45_dir ./vc90/libboost_regex-vc90-mt-sgd-1_45.lib boost_regex-vc90-mt-gd-1_45_dir ./vc90/boost_regex-vc90-mt-gd-1_45.lib boost_regex-vc90-mt-1_45_dir ./vc90/boost_regex-vc90-mt-1_45.lib libboost_regex-vc90-mt-1_45_dir ./vc90/libboost_regex-vc90-mt-1_45.lib libboost_regex-vc90-mt-gd-1_45_dir ./vc90/libboost_regex-vc90-mt-gd-1_45.lib +all : main_dir libboost_regex-vc90-mt-s-1_46_dir ./vc90/libboost_regex-vc90-mt-s-1_46.lib libboost_regex-vc90-mt-sgd-1_46_dir ./vc90/libboost_regex-vc90-mt-sgd-1_46.lib boost_regex-vc90-mt-gd-1_46_dir ./vc90/boost_regex-vc90-mt-gd-1_46.lib boost_regex-vc90-mt-1_46_dir ./vc90/boost_regex-vc90-mt-1_46.lib libboost_regex-vc90-mt-1_46_dir ./vc90/libboost_regex-vc90-mt-1_46.lib libboost_regex-vc90-mt-gd-1_46_dir ./vc90/libboost_regex-vc90-mt-gd-1_46.lib -clean : libboost_regex-vc90-s-1_45_clean libboost_regex-vc90-mt-s-1_45_clean libboost_regex-vc90-sgd-1_45_clean libboost_regex-vc90-mt-sgd-1_45_clean boost_regex-vc90-mt-gd-1_45_clean boost_regex-vc90-mt-1_45_clean libboost_regex-vc90-mt-1_45_clean libboost_regex-vc90-mt-gd-1_45_clean +clean : libboost_regex-vc90-mt-s-1_46_clean libboost_regex-vc90-mt-sgd-1_46_clean boost_regex-vc90-mt-gd-1_46_clean boost_regex-vc90-mt-1_46_clean libboost_regex-vc90-mt-1_46_clean libboost_regex-vc90-mt-gd-1_46_clean install : all - copy vc90\libboost_regex-vc90-s-1_45.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-s-1_45.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-sgd-1_45.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-sgd-1_45.pdb "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-sgd-1_45.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-sgd-1_45.pdb "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-gd-1_45.dll "$(MSVCDIR)\bin" - copy vc90\boost_regex-vc90-mt-gd-1_45.pdb "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-1_45.dll "$(MSVCDIR)\bin" - copy vc90\libboost_regex-vc90-mt-1_45.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-gd-1_45.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-gd-1_45.pdb "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-s-1_46.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-sgd-1_46.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_46.dll "$(MSVCDIR)\bin" + copy vc90\boost_regex-vc90-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-1_46.dll "$(MSVCDIR)\bin" + copy vc90\libboost_regex-vc90-mt-1_46.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_46.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_46.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc90\$(NULL)" mkdir vc90 @@ -88,545 +83,409 @@ main_dir : ######################################################## # -# section for libboost_regex-vc90-s-1_45.lib +# section for libboost_regex-vc90-mt-s-1_46.lib # ######################################################## -vc90/libboost_regex-vc90-s-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-s-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-s-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-s-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-s-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-s-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-s-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-s-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-s-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-s-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-s-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-s-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-s-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-s-1_45/ -Fdvc90/libboost_regex-vc90-s-1_45.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/winstances.cpp -libboost_regex-vc90-s-1_45_dir : - @if not exist "vc90\libboost_regex-vc90-s-1_45\$(NULL)" mkdir vc90\libboost_regex-vc90-s-1_45 +libboost_regex-vc90-mt-s-1_46_dir : + @if not exist "vc90\libboost_regex-vc90-mt-s-1_46\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-s-1_46 -libboost_regex-vc90-s-1_45_clean : - del vc90\libboost_regex-vc90-s-1_45\*.obj - del vc90\libboost_regex-vc90-s-1_45\*.idb - del vc90\libboost_regex-vc90-s-1_45\*.exp - del vc90\libboost_regex-vc90-s-1_45\*.pch +libboost_regex-vc90-mt-s-1_46_clean : + del vc90\libboost_regex-vc90-mt-s-1_46\*.obj + del vc90\libboost_regex-vc90-mt-s-1_46\*.idb + del vc90\libboost_regex-vc90-mt-s-1_46\*.exp + del vc90\libboost_regex-vc90-mt-s-1_46\*.pch -./vc90/libboost_regex-vc90-s-1_45.lib : vc90/libboost_regex-vc90-s-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_45/cregex.obj vc90/libboost_regex-vc90-s-1_45/fileiter.obj vc90/libboost_regex-vc90-s-1_45/icu.obj vc90/libboost_regex-vc90-s-1_45/instances.obj vc90/libboost_regex-vc90-s-1_45/posix_api.obj vc90/libboost_regex-vc90-s-1_45/regex.obj vc90/libboost_regex-vc90-s-1_45/regex_debug.obj vc90/libboost_regex-vc90-s-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_45/static_mutex.obj vc90/libboost_regex-vc90-s-1_45/usinstances.obj vc90/libboost_regex-vc90-s-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_45/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-s-1_45.lib $(XSFLAGS) vc90/libboost_regex-vc90-s-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_45/cregex.obj vc90/libboost_regex-vc90-s-1_45/fileiter.obj vc90/libboost_regex-vc90-s-1_45/icu.obj vc90/libboost_regex-vc90-s-1_45/instances.obj vc90/libboost_regex-vc90-s-1_45/posix_api.obj vc90/libboost_regex-vc90-s-1_45/regex.obj vc90/libboost_regex-vc90-s-1_45/regex_debug.obj vc90/libboost_regex-vc90-s-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_45/static_mutex.obj vc90/libboost_regex-vc90-s-1_45/usinstances.obj vc90/libboost_regex-vc90-s-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_45/winstances.obj +./vc90/libboost_regex-vc90-mt-s-1_46.lib : vc90/libboost_regex-vc90-mt-s-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/cregex.obj vc90/libboost_regex-vc90-mt-s-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_46/icu.obj vc90/libboost_regex-vc90-mt-s-1_46/instances.obj vc90/libboost_regex-vc90-mt-s-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_46/regex.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_46/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-s-1_46.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-s-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/cregex.obj vc90/libboost_regex-vc90-mt-s-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_46/icu.obj vc90/libboost_regex-vc90-mt-s-1_46/instances.obj vc90/libboost_regex-vc90-mt-s-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_46/regex.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-s-1_45.lib +# section for libboost_regex-vc90-mt-sgd-1_46.lib # ######################################################## -vc90/libboost_regex-vc90-mt-s-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-s-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-s-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-s-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-s-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-s-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-s-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-s-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-s-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-s-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-s-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-s-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-s-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_45/ -Fdvc90/libboost_regex-vc90-mt-s-1_45.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-s-1_45_dir : - @if not exist "vc90\libboost_regex-vc90-mt-s-1_45\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-s-1_45 +libboost_regex-vc90-mt-sgd-1_46_dir : + @if not exist "vc90\libboost_regex-vc90-mt-sgd-1_46\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-sgd-1_46 -libboost_regex-vc90-mt-s-1_45_clean : - del vc90\libboost_regex-vc90-mt-s-1_45\*.obj - del vc90\libboost_regex-vc90-mt-s-1_45\*.idb - del vc90\libboost_regex-vc90-mt-s-1_45\*.exp - del vc90\libboost_regex-vc90-mt-s-1_45\*.pch +libboost_regex-vc90-mt-sgd-1_46_clean : + del vc90\libboost_regex-vc90-mt-sgd-1_46\*.obj + del vc90\libboost_regex-vc90-mt-sgd-1_46\*.idb + del vc90\libboost_regex-vc90-mt-sgd-1_46\*.exp + del vc90\libboost_regex-vc90-mt-sgd-1_46\*.pch -./vc90/libboost_regex-vc90-mt-s-1_45.lib : vc90/libboost_regex-vc90-mt-s-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_45/cregex.obj vc90/libboost_regex-vc90-mt-s-1_45/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_45/icu.obj vc90/libboost_regex-vc90-mt-s-1_45/instances.obj vc90/libboost_regex-vc90-mt-s-1_45/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_45/regex.obj vc90/libboost_regex-vc90-mt-s-1_45/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_45/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_45/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_45/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-s-1_45.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-s-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_45/cregex.obj vc90/libboost_regex-vc90-mt-s-1_45/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_45/icu.obj vc90/libboost_regex-vc90-mt-s-1_45/instances.obj vc90/libboost_regex-vc90-mt-s-1_45/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_45/regex.obj vc90/libboost_regex-vc90-mt-s-1_45/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_45/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_45/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_45/winstances.obj +./vc90/libboost_regex-vc90-mt-sgd-1_46.lib : vc90/libboost_regex-vc90-mt-sgd-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_46/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_46/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_46/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-sgd-1_46.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-sgd-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_46/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_46/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc90-sgd-1_45.lib +# section for boost_regex-vc90-mt-gd-1_46.lib # ######################################################## -vc90/libboost_regex-vc90-sgd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/c_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/cpp_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/cregex.cpp +vc90/boost_regex-vc90-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-sgd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/fileiter.cpp +vc90/boost_regex-vc90-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-sgd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/icu.cpp +vc90/boost_regex-vc90-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-sgd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/instances.cpp +vc90/boost_regex-vc90-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-sgd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/posix_api.cpp +vc90/boost_regex-vc90-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-sgd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/regex.cpp +vc90/boost_regex-vc90-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-sgd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/regex_debug.cpp +vc90/boost_regex-vc90-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-sgd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/regex_raw_buffer.cpp +vc90/boost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-sgd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/regex_traits_defaults.cpp +vc90/boost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-sgd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/static_mutex.cpp +vc90/boost_regex-vc90-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-sgd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/usinstances.cpp +vc90/boost_regex-vc90-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-sgd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/w32_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/wc_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/wide_posix_api.cpp +vc90/boost_regex-vc90-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-sgd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-sgd-1_45/ -Fdvc90/libboost_regex-vc90-sgd-1_45.pdb ../src/winstances.cpp +vc90/boost_regex-vc90-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/winstances.cpp -libboost_regex-vc90-sgd-1_45_dir : - @if not exist "vc90\libboost_regex-vc90-sgd-1_45\$(NULL)" mkdir vc90\libboost_regex-vc90-sgd-1_45 +boost_regex-vc90-mt-gd-1_46_dir : + @if not exist "vc90\boost_regex-vc90-mt-gd-1_46\$(NULL)" mkdir vc90\boost_regex-vc90-mt-gd-1_46 -libboost_regex-vc90-sgd-1_45_clean : - del vc90\libboost_regex-vc90-sgd-1_45\*.obj - del vc90\libboost_regex-vc90-sgd-1_45\*.idb - del vc90\libboost_regex-vc90-sgd-1_45\*.exp - del vc90\libboost_regex-vc90-sgd-1_45\*.pch +boost_regex-vc90-mt-gd-1_46_clean : + del vc90\boost_regex-vc90-mt-gd-1_46\*.obj + del vc90\boost_regex-vc90-mt-gd-1_46\*.idb + del vc90\boost_regex-vc90-mt-gd-1_46\*.exp + del vc90\boost_regex-vc90-mt-gd-1_46\*.pch -./vc90/libboost_regex-vc90-sgd-1_45.lib : vc90/libboost_regex-vc90-sgd-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_45/cregex.obj vc90/libboost_regex-vc90-sgd-1_45/fileiter.obj vc90/libboost_regex-vc90-sgd-1_45/icu.obj vc90/libboost_regex-vc90-sgd-1_45/instances.obj vc90/libboost_regex-vc90-sgd-1_45/posix_api.obj vc90/libboost_regex-vc90-sgd-1_45/regex.obj vc90/libboost_regex-vc90-sgd-1_45/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_45/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_45/usinstances.obj vc90/libboost_regex-vc90-sgd-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_45/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-sgd-1_45.lib $(XSFLAGS) vc90/libboost_regex-vc90-sgd-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_45/cregex.obj vc90/libboost_regex-vc90-sgd-1_45/fileiter.obj vc90/libboost_regex-vc90-sgd-1_45/icu.obj vc90/libboost_regex-vc90-sgd-1_45/instances.obj vc90/libboost_regex-vc90-sgd-1_45/posix_api.obj vc90/libboost_regex-vc90-sgd-1_45/regex.obj vc90/libboost_regex-vc90-sgd-1_45/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_45/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_45/usinstances.obj vc90/libboost_regex-vc90-sgd-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_45/winstances.obj +./vc90/boost_regex-vc90-mt-gd-1_46.lib : vc90/boost_regex-vc90-mt-gd-1_46/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/cregex.obj vc90/boost_regex-vc90-mt-gd-1_46/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_46/icu.obj vc90/boost_regex-vc90-mt-gd-1_46/instances.obj vc90/boost_regex-vc90-mt-gd-1_46/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_46/regex.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_46/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_46/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc90/boost_regex-vc90-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-gd-1_46.dll" /implib:"vc90/boost_regex-vc90-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-gd-1_46/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/cregex.obj vc90/boost_regex-vc90-mt-gd-1_46/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_46/icu.obj vc90/boost_regex-vc90-mt-gd-1_46/instances.obj vc90/boost_regex-vc90-mt-gd-1_46/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_46/regex.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_46/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_46/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_46/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-sgd-1_45.lib +# section for boost_regex-vc90-mt-1_46.lib # ######################################################## -vc90/libboost_regex-vc90-mt-sgd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/c_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/cpp_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/cregex.cpp +vc90/boost_regex-vc90-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/fileiter.cpp +vc90/boost_regex-vc90-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/icu.cpp +vc90/boost_regex-vc90-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/instances.cpp +vc90/boost_regex-vc90-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/posix_api.cpp +vc90/boost_regex-vc90-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/regex.cpp +vc90/boost_regex-vc90-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/regex_debug.cpp +vc90/boost_regex-vc90-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/regex_raw_buffer.cpp +vc90/boost_regex-vc90-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/regex_traits_defaults.cpp +vc90/boost_regex-vc90-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/static_mutex.cpp +vc90/boost_regex-vc90-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/usinstances.cpp +vc90/boost_regex-vc90-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/w32_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/wc_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/wide_posix_api.cpp +vc90/boost_regex-vc90-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-sgd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_45/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_45.pdb ../src/winstances.cpp +vc90/boost_regex-vc90-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-sgd-1_45_dir : - @if not exist "vc90\libboost_regex-vc90-mt-sgd-1_45\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-sgd-1_45 +boost_regex-vc90-mt-1_46_dir : + @if not exist "vc90\boost_regex-vc90-mt-1_46\$(NULL)" mkdir vc90\boost_regex-vc90-mt-1_46 -libboost_regex-vc90-mt-sgd-1_45_clean : - del vc90\libboost_regex-vc90-mt-sgd-1_45\*.obj - del vc90\libboost_regex-vc90-mt-sgd-1_45\*.idb - del vc90\libboost_regex-vc90-mt-sgd-1_45\*.exp - del vc90\libboost_regex-vc90-mt-sgd-1_45\*.pch +boost_regex-vc90-mt-1_46_clean : + del vc90\boost_regex-vc90-mt-1_46\*.obj + del vc90\boost_regex-vc90-mt-1_46\*.idb + del vc90\boost_regex-vc90-mt-1_46\*.exp + del vc90\boost_regex-vc90-mt-1_46\*.pch -./vc90/libboost_regex-vc90-mt-sgd-1_45.lib : vc90/libboost_regex-vc90-mt-sgd-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_45/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_45/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_45/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_45/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_45/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_45/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_45/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_45/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_45/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_45/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-sgd-1_45.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-sgd-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_45/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_45/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_45/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_45/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_45/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_45/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_45/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_45/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_45/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_45/winstances.obj +./vc90/boost_regex-vc90-mt-1_46.lib : vc90/boost_regex-vc90-mt-1_46/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/cregex.obj vc90/boost_regex-vc90-mt-1_46/fileiter.obj vc90/boost_regex-vc90-mt-1_46/icu.obj vc90/boost_regex-vc90-mt-1_46/instances.obj vc90/boost_regex-vc90-mt-1_46/posix_api.obj vc90/boost_regex-vc90-mt-1_46/regex.obj vc90/boost_regex-vc90-mt-1_46/regex_debug.obj vc90/boost_regex-vc90-mt-1_46/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_46/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_46/static_mutex.obj vc90/boost_regex-vc90-mt-1_46/usinstances.obj vc90/boost_regex-vc90-mt-1_46/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_46/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc90/boost_regex-vc90-mt-1_46.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-1_46.dll" /implib:"vc90/boost_regex-vc90-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-1_46/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/cregex.obj vc90/boost_regex-vc90-mt-1_46/fileiter.obj vc90/boost_regex-vc90-mt-1_46/icu.obj vc90/boost_regex-vc90-mt-1_46/instances.obj vc90/boost_regex-vc90-mt-1_46/posix_api.obj vc90/boost_regex-vc90-mt-1_46/regex.obj vc90/boost_regex-vc90-mt-1_46/regex_debug.obj vc90/boost_regex-vc90-mt-1_46/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_46/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_46/static_mutex.obj vc90/boost_regex-vc90-mt-1_46/usinstances.obj vc90/boost_regex-vc90-mt-1_46/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc90-mt-gd-1_45.lib +# section for libboost_regex-vc90-mt-1_46.lib # ######################################################## -vc90/boost_regex-vc90-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/c_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/cpp_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/cregex.cpp -vc90/boost_regex-vc90-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/fileiter.cpp -vc90/boost_regex-vc90-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/icu.cpp -vc90/boost_regex-vc90-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/instances.cpp -vc90/boost_regex-vc90-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/posix_api.cpp -vc90/boost_regex-vc90-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/regex.cpp -vc90/boost_regex-vc90-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/regex_debug.cpp -vc90/boost_regex-vc90-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/regex_raw_buffer.cpp -vc90/boost_regex-vc90-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/regex_traits_defaults.cpp -vc90/boost_regex-vc90-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/static_mutex.cpp -vc90/boost_regex-vc90-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/usinstances.cpp -vc90/boost_regex-vc90-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/w32_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/wc_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/wide_posix_api.cpp -vc90/boost_regex-vc90-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_45/ -Fdvc90/boost_regex-vc90-mt-gd-1_45.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/winstances.cpp -boost_regex-vc90-mt-gd-1_45_dir : - @if not exist "vc90\boost_regex-vc90-mt-gd-1_45\$(NULL)" mkdir vc90\boost_regex-vc90-mt-gd-1_45 +libboost_regex-vc90-mt-1_46_dir : + @if not exist "vc90\libboost_regex-vc90-mt-1_46\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-1_46 -boost_regex-vc90-mt-gd-1_45_clean : - del vc90\boost_regex-vc90-mt-gd-1_45\*.obj - del vc90\boost_regex-vc90-mt-gd-1_45\*.idb - del vc90\boost_regex-vc90-mt-gd-1_45\*.exp - del vc90\boost_regex-vc90-mt-gd-1_45\*.pch +libboost_regex-vc90-mt-1_46_clean : + del vc90\libboost_regex-vc90-mt-1_46\*.obj + del vc90\libboost_regex-vc90-mt-1_46\*.idb + del vc90\libboost_regex-vc90-mt-1_46\*.exp + del vc90\libboost_regex-vc90-mt-1_46\*.pch -./vc90/boost_regex-vc90-mt-gd-1_45.lib : vc90/boost_regex-vc90-mt-gd-1_45/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_45/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_45/cregex.obj vc90/boost_regex-vc90-mt-gd-1_45/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_45/icu.obj vc90/boost_regex-vc90-mt-gd-1_45/instances.obj vc90/boost_regex-vc90-mt-gd-1_45/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_45/regex.obj vc90/boost_regex-vc90-mt-gd-1_45/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_45/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_45/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_45/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_45/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_45/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_45/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_45/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc90/boost_regex-vc90-mt-gd-1_45.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-gd-1_45.dll" /implib:"vc90/boost_regex-vc90-mt-gd-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-gd-1_45/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_45/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_45/cregex.obj vc90/boost_regex-vc90-mt-gd-1_45/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_45/icu.obj vc90/boost_regex-vc90-mt-gd-1_45/instances.obj vc90/boost_regex-vc90-mt-gd-1_45/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_45/regex.obj vc90/boost_regex-vc90-mt-gd-1_45/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_45/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_45/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_45/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_45/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_45/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_45/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_45/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_45/winstances.obj +./vc90/libboost_regex-vc90-mt-1_46.lib : vc90/libboost_regex-vc90-mt-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/cregex.obj vc90/libboost_regex-vc90-mt-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-1_46/icu.obj vc90/libboost_regex-vc90-mt-1_46/instances.obj vc90/libboost_regex-vc90-mt-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-1_46/regex.obj vc90/libboost_regex-vc90-mt-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_46/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-1_46.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/cregex.obj vc90/libboost_regex-vc90-mt-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-1_46/icu.obj vc90/libboost_regex-vc90-mt-1_46/instances.obj vc90/libboost_regex-vc90-mt-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-1_46/regex.obj vc90/libboost_regex-vc90-mt-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_46/winstances.obj ######################################################## # -# section for boost_regex-vc90-mt-1_45.lib +# section for libboost_regex-vc90-mt-gd-1_46.lib # ######################################################## -vc90/boost_regex-vc90-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/c_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/cregex.cpp -vc90/boost_regex-vc90-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/fileiter.cpp -vc90/boost_regex-vc90-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/icu.cpp -vc90/boost_regex-vc90-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/instances.cpp -vc90/boost_regex-vc90-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/posix_api.cpp -vc90/boost_regex-vc90-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/regex.cpp -vc90/boost_regex-vc90-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/regex_debug.cpp -vc90/boost_regex-vc90-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp -vc90/boost_regex-vc90-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp -vc90/boost_regex-vc90-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/static_mutex.cpp -vc90/boost_regex-vc90-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/usinstances.cpp -vc90/boost_regex-vc90-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/wide_posix_api.cpp -vc90/boost_regex-vc90-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_45/ -Fdvc90/boost_regex-vc90-mt-1_45.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/winstances.cpp -boost_regex-vc90-mt-1_45_dir : - @if not exist "vc90\boost_regex-vc90-mt-1_45\$(NULL)" mkdir vc90\boost_regex-vc90-mt-1_45 +libboost_regex-vc90-mt-gd-1_46_dir : + @if not exist "vc90\libboost_regex-vc90-mt-gd-1_46\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-gd-1_46 -boost_regex-vc90-mt-1_45_clean : - del vc90\boost_regex-vc90-mt-1_45\*.obj - del vc90\boost_regex-vc90-mt-1_45\*.idb - del vc90\boost_regex-vc90-mt-1_45\*.exp - del vc90\boost_regex-vc90-mt-1_45\*.pch +libboost_regex-vc90-mt-gd-1_46_clean : + del vc90\libboost_regex-vc90-mt-gd-1_46\*.obj + del vc90\libboost_regex-vc90-mt-gd-1_46\*.idb + del vc90\libboost_regex-vc90-mt-gd-1_46\*.exp + del vc90\libboost_regex-vc90-mt-gd-1_46\*.pch -./vc90/boost_regex-vc90-mt-1_45.lib : vc90/boost_regex-vc90-mt-1_45/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_45/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_45/cregex.obj vc90/boost_regex-vc90-mt-1_45/fileiter.obj vc90/boost_regex-vc90-mt-1_45/icu.obj vc90/boost_regex-vc90-mt-1_45/instances.obj vc90/boost_regex-vc90-mt-1_45/posix_api.obj vc90/boost_regex-vc90-mt-1_45/regex.obj vc90/boost_regex-vc90-mt-1_45/regex_debug.obj vc90/boost_regex-vc90-mt-1_45/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_45/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_45/static_mutex.obj vc90/boost_regex-vc90-mt-1_45/usinstances.obj vc90/boost_regex-vc90-mt-1_45/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_45/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_45/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_45/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc90/boost_regex-vc90-mt-1_45.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-1_45.dll" /implib:"vc90/boost_regex-vc90-mt-1_45.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-1_45/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_45/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_45/cregex.obj vc90/boost_regex-vc90-mt-1_45/fileiter.obj vc90/boost_regex-vc90-mt-1_45/icu.obj vc90/boost_regex-vc90-mt-1_45/instances.obj vc90/boost_regex-vc90-mt-1_45/posix_api.obj vc90/boost_regex-vc90-mt-1_45/regex.obj vc90/boost_regex-vc90-mt-1_45/regex_debug.obj vc90/boost_regex-vc90-mt-1_45/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_45/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_45/static_mutex.obj vc90/boost_regex-vc90-mt-1_45/usinstances.obj vc90/boost_regex-vc90-mt-1_45/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_45/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_45/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_45/winstances.obj - -######################################################## -# -# section for libboost_regex-vc90-mt-1_45.lib -# -######################################################## -vc90/libboost_regex-vc90-mt-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/c_regex_traits.cpp - -vc90/libboost_regex-vc90-mt-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/cpp_regex_traits.cpp - -vc90/libboost_regex-vc90-mt-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/cregex.cpp - -vc90/libboost_regex-vc90-mt-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/fileiter.cpp - -vc90/libboost_regex-vc90-mt-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/icu.cpp - -vc90/libboost_regex-vc90-mt-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/instances.cpp - -vc90/libboost_regex-vc90-mt-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/posix_api.cpp - -vc90/libboost_regex-vc90-mt-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/regex.cpp - -vc90/libboost_regex-vc90-mt-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/regex_debug.cpp - -vc90/libboost_regex-vc90-mt-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/regex_raw_buffer.cpp - -vc90/libboost_regex-vc90-mt-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/regex_traits_defaults.cpp - -vc90/libboost_regex-vc90-mt-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/static_mutex.cpp - -vc90/libboost_regex-vc90-mt-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/usinstances.cpp - -vc90/libboost_regex-vc90-mt-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/w32_regex_traits.cpp - -vc90/libboost_regex-vc90-mt-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/wc_regex_traits.cpp - -vc90/libboost_regex-vc90-mt-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/wide_posix_api.cpp - -vc90/libboost_regex-vc90-mt-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_45/ -Fdvc90/libboost_regex-vc90-mt-1_45.pdb ../src/winstances.cpp - -libboost_regex-vc90-mt-1_45_dir : - @if not exist "vc90\libboost_regex-vc90-mt-1_45\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-1_45 - -libboost_regex-vc90-mt-1_45_clean : - del vc90\libboost_regex-vc90-mt-1_45\*.obj - del vc90\libboost_regex-vc90-mt-1_45\*.idb - del vc90\libboost_regex-vc90-mt-1_45\*.exp - del vc90\libboost_regex-vc90-mt-1_45\*.pch - -./vc90/libboost_regex-vc90-mt-1_45.lib : vc90/libboost_regex-vc90-mt-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_45/cregex.obj vc90/libboost_regex-vc90-mt-1_45/fileiter.obj vc90/libboost_regex-vc90-mt-1_45/icu.obj vc90/libboost_regex-vc90-mt-1_45/instances.obj vc90/libboost_regex-vc90-mt-1_45/posix_api.obj vc90/libboost_regex-vc90-mt-1_45/regex.obj vc90/libboost_regex-vc90-mt-1_45/regex_debug.obj vc90/libboost_regex-vc90-mt-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_45/static_mutex.obj vc90/libboost_regex-vc90-mt-1_45/usinstances.obj vc90/libboost_regex-vc90-mt-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_45/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-1_45.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_45/cregex.obj vc90/libboost_regex-vc90-mt-1_45/fileiter.obj vc90/libboost_regex-vc90-mt-1_45/icu.obj vc90/libboost_regex-vc90-mt-1_45/instances.obj vc90/libboost_regex-vc90-mt-1_45/posix_api.obj vc90/libboost_regex-vc90-mt-1_45/regex.obj vc90/libboost_regex-vc90-mt-1_45/regex_debug.obj vc90/libboost_regex-vc90-mt-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_45/static_mutex.obj vc90/libboost_regex-vc90-mt-1_45/usinstances.obj vc90/libboost_regex-vc90-mt-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_45/winstances.obj - -######################################################## -# -# section for libboost_regex-vc90-mt-gd-1_45.lib -# -######################################################## -vc90/libboost_regex-vc90-mt-gd-1_45/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/c_regex_traits.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/cpp_regex_traits.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/cregex.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/fileiter.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/icu.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/instances.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/posix_api.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/regex.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/regex_debug.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/regex_raw_buffer.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/regex_traits_defaults.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/static_mutex.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/usinstances.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/w32_regex_traits.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/wc_regex_traits.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/wide_posix_api.cpp - -vc90/libboost_regex-vc90-mt-gd-1_45/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_45/ -Fdvc90/libboost_regex-vc90-mt-gd-1_45.pdb ../src/winstances.cpp - -libboost_regex-vc90-mt-gd-1_45_dir : - @if not exist "vc90\libboost_regex-vc90-mt-gd-1_45\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-gd-1_45 - -libboost_regex-vc90-mt-gd-1_45_clean : - del vc90\libboost_regex-vc90-mt-gd-1_45\*.obj - del vc90\libboost_regex-vc90-mt-gd-1_45\*.idb - del vc90\libboost_regex-vc90-mt-gd-1_45\*.exp - del vc90\libboost_regex-vc90-mt-gd-1_45\*.pch - -./vc90/libboost_regex-vc90-mt-gd-1_45.lib : vc90/libboost_regex-vc90-mt-gd-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_45/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_45/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_45/icu.obj vc90/libboost_regex-vc90-mt-gd-1_45/instances.obj vc90/libboost_regex-vc90-mt-gd-1_45/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_45/regex.obj vc90/libboost_regex-vc90-mt-gd-1_45/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_45/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_45/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_45/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-gd-1_45.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-gd-1_45/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_45/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_45/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_45/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_45/icu.obj vc90/libboost_regex-vc90-mt-gd-1_45/instances.obj vc90/libboost_regex-vc90-mt-gd-1_45/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_45/regex.obj vc90/libboost_regex-vc90-mt-gd-1_45/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_45/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_45/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_45/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_45/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_45/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_45/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_45/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_45/winstances.obj +./vc90/libboost_regex-vc90-mt-gd-1_46.lib : vc90/libboost_regex-vc90-mt-gd-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_46/icu.obj vc90/libboost_regex-vc90-mt-gd-1_46/instances.obj vc90/libboost_regex-vc90-mt-gd-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_46/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-gd-1_46.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-gd-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_46/icu.obj vc90/libboost_regex-vc90-mt-gd-1_46/instances.obj vc90/libboost_regex-vc90-mt-gd-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_46/winstances.obj diff --git a/build/vc_gen.sh b/build/vc_gen.sh index 73f5776c..0838770e 100644 --- a/build/vc_gen.sh +++ b/build/vc_gen.sh @@ -126,6 +126,7 @@ EOF } is_stlport="no" +build_static="yes" function vc6_gen() { @@ -139,7 +140,7 @@ function vc6_gen() rm -f $iout stlport_suffix="" - if test ${subdir} != "vc80" ; then + if test ${build_static} == "yes" ; then libname="libboost_regex-${subdir}-s-${boost_version}" opts='/c /nologo /ML /W3 '$EH_OPTS' /O2 '$PROC_OPTS' /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD '"$release_extra"' ' vc6_gen_lib @@ -149,7 +150,7 @@ function vc6_gen() opts='/nologo /MT /W3 '$EH_OPTS' /O2 '$PROC_OPTS' /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD '"$release_extra"' /c' vc6_gen_lib - if test ${subdir} != "vc80" ; then + if test ${build_static} == "yes" ; then debug="yes" libname="libboost_regex-${subdir}-sgd-${boost_version}" opts='/nologo /MLd /W3 /Gm '$EH_OPTS' /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD '"$debug_extra"' /c ' @@ -193,6 +194,10 @@ function vc6_gen() VC8_CHECK='MSVCDIR=$(VS90COMNTOOLS)..\..\VC' echo setting VC9 setup to: ${VC8_CHECK} fi + if test ${subdir} = "vc100" ; then + VC8_CHECK='MSVCDIR=$(VS100COMNTOOLS)..\..\VC' + echo setting VC10 setup to: ${VC8_CHECK} + fi fi cat > $out << EOF @@ -201,7 +206,7 @@ function vc6_gen() # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt. # -# auto generated makefile for VC6 compiler +# auto generated makefile for MSVC compiler # # usage: # make @@ -473,7 +478,8 @@ no_single="no" subdir="vc80" vc6_gen # -# generate vc8 makefile: +# generate vc9 makefile: +build_static="no" EH_OPTS="/EHsc" PROC_OPTS="" debug_extra="$EH_OPTS" @@ -482,6 +488,17 @@ out="vc9.mak" no_single="no" subdir="vc90" vc6_gen +# +# generate vc10 makefile: +build_static="no" +EH_OPTS="/EHsc" +PROC_OPTS="" +debug_extra="$EH_OPTS" +is_stlport="no" +out="vc10.mak" +no_single="no" +subdir="vc100" +vc6_gen # @@ -490,20 +507,3 @@ rm -f $tout $iout - - - - - - - - - - - - - - - - - From ac5bfb7111055c59ecdf09d43084c78285cebffb Mon Sep 17 00:00:00 2001 From: Bryce Adelstein-Lelbach Date: Fri, 14 Jan 2011 02:35:58 +0000 Subject: [PATCH 68/77] Replacing the use of with across Boost. On Linux, GNU's libstdc++, which is the default stdlib for icc and clang, cannot parse the header in version 4.5+ (which thankfully neither compiler advises the use of yet), as it's original C++98-friendly implementation has been replaced with a gnu++0x implementation. is a portable implementation of , providing boost::detail::setfill, boost::detail::setbase, boost::detail::setw, boost::detail::setprecision, boost::detail::setiosflags and boost::detail::resetiosflags. [SVN r68140] --- performance/command_line.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/performance/command_line.cpp b/performance/command_line.cpp index bdebc7a1..32738807 100644 --- a/performance/command_line.cpp +++ b/performance/command_line.cpp @@ -10,7 +10,7 @@ */ #include -#include +#include #include #include #include @@ -232,12 +232,12 @@ void print_result(std::ostream& os, double time, double best) if(highlight) os << ""; if(rel <= 1000) - os << std::setprecision(3) << rel; + os << boost::detail::setprecision(3) << rel; else os << (int)rel; os << "
    ("; if(time <= 1000) - os << std::setprecision(3) << time; + os << boost::detail::setprecision(3) << time; else os << (int)time; os << suffixes[suffix] << ")"; From 407e7c799389765f5bc0f3d34f296958a10ce921 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Sat, 15 Jan 2011 08:11:51 +0000 Subject: [PATCH 69/77] Revert [67111] (addition of boost/detail/iomanip.hpp) and all the commits that depend on it. ([68137], [68140], [68141], [68154], and [68165]). [SVN r68168] --- performance/command_line.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/performance/command_line.cpp b/performance/command_line.cpp index 32738807..bdebc7a1 100644 --- a/performance/command_line.cpp +++ b/performance/command_line.cpp @@ -10,7 +10,7 @@ */ #include -#include +#include #include #include #include @@ -232,12 +232,12 @@ void print_result(std::ostream& os, double time, double best) if(highlight) os << ""; if(rel <= 1000) - os << boost::detail::setprecision(3) << rel; + os << std::setprecision(3) << rel; else os << (int)rel; os << "
    ("; if(time <= 1000) - os << boost::detail::setprecision(3) << time; + os << std::setprecision(3) << time; else os << (int)time; os << suffixes[suffix] << ")"; From 7ed55a515ee4f4b4388c223d1f7aa6bb0f801efc Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 20 Jan 2011 10:14:55 +0000 Subject: [PATCH 70/77] Building with IBM C++ no longer needs a main() entry point. Fixes #5088. [SVN r68318] --- src/regex.cpp | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/regex.cpp b/src/regex.cpp index 1f1caa6f..27ac43cc 100644 --- a/src/regex.cpp +++ b/src/regex.cpp @@ -224,19 +224,3 @@ int WINAPI DllEntryPoint(HINSTANCE , unsigned long , void*) } #endif -#if defined(__IBMCPP__) && defined(BOOST_REGEX_DYN_LINK) -// -// Is this correct - linker complains without it ? -// -int main() -{ - return 0; -} - -#endif - - - - - - From 463417cabaf9dc10d92e6f4a239d2dbf53840041 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 9 Mar 2011 18:12:18 +0000 Subject: [PATCH 71/77] Fix bug that prevents turning off multiple Perl-modifiers at once. Fixes #5223. [SVN r69775] --- include/boost/regex/v4/basic_regex_parser.hpp | 2 ++ test/regress/test_perl_ex.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index 4dacfc6f..0192a9f1 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -2711,6 +2711,8 @@ regex_constants::syntax_option_type basic_regex_parser::parse_opt } } while(!breakout); + + breakout = false; if(*m_position == static_cast('-')) { diff --git a/test/regress/test_perl_ex.cpp b/test/regress/test_perl_ex.cpp index f96be261..3307d314 100644 --- a/test/regress/test_perl_ex.cpp +++ b/test/regress/test_perl_ex.cpp @@ -337,6 +337,7 @@ void test_options2() TEST_REGEX_SEARCH("(?s).", perl, "\n", match_default|match_not_dot_newline, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("(?-s).", perl, "\n", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("(?-s).", perl, "\n", match_default|match_not_dot_newline, make_array(-2, -2)); + TEST_REGEX_SEARCH("(?-xism)d", perl, "d", match_default, make_array(0, 1, -2, -2)); test_options3(); } From e7a6721d982ce827c278f6611c96e884fd6f3ed4 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 9 Mar 2011 18:16:05 +0000 Subject: [PATCH 72/77] Update docs to reflect fixes for next release. Fixes #5223. [SVN r69776] --- doc/history.qbk | 5 + .../background_information/examples.html | 6 +- .../background_information/history.html | 26 +++-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 16 ++-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 ++-- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 ++++++------- doc/html/boost_regex/syntax/basic_syntax.html | 44 ++++----- doc/html/boost_regex/syntax/perl_syntax.html | 96 +++++++++---------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- 32 files changed, 206 insertions(+), 193 deletions(-) diff --git a/doc/history.qbk b/doc/history.qbk index 54ce54e5..1af9e2ca 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -15,6 +15,11 @@ Currently open issues can be viewed [@https://svn.boost.org/trac/boost/query?sta All issues including closed ones can be viewed [@https://svn.boost.org/trac/boost/query?status=assigned&status=closed&status=new&status=reopened&component=regex&order=priority&col=id&col=summary&col=status&col=type&col=milestone&col=component here]. +[h4 Boost 1.47] + +Fixed issues: +[@https://svn.boost.org/trac/boost/ticket/5223 #5223]. + [h4 Boost 1.44] Fixed issues: diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 83bbdc65..3e975f5f 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -151,7 +151,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -177,7 +177,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 11bf5f99..4c594ebc 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -35,8 +35,16 @@

    All issues including closed ones can be viewed here.

    +
    + + Boost + 1.47 +
    +

    + Fixed issues: #5223. +

    - + Boost 1.44
    @@ -55,7 +63,7 @@ #3890

    - + Boost 1.42
    @@ -84,7 +92,7 @@
    - + Boost 1.40
    @@ -93,7 +101,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -121,7 +129,7 @@
    - + Boost 1.34
    @@ -144,7 +152,7 @@
    - + Boost 1.33.1
    @@ -214,7 +222,7 @@
    - + Boost 1.33.0
    @@ -269,7 +277,7 @@
    - + Boost 1.32.1
    @@ -277,7 +285,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index a2ddf8d3..f4dcfdad 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 1d516f79..f840f3b1 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -73,7 +73,7 @@ the Unicode requirements below.

    - + POSIX

    @@ -93,7 +93,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 9f5ee9ba..1286b03e 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 78856bb8..aca21e74 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index eb7f9ed7..8e850980 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -150,11 +150,11 @@

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -356,7 +356,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -401,7 +401,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index fe815a81..47154d27 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index cb5b8c19..2d60a9fb 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
     basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -325,7 +325,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -403,7 +403,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -506,7 +506,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -608,7 +608,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -716,7 +716,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -816,7 +816,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1002,7 +1002,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 8596e219..a5d28aa1 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -378,7 +378,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index 97be17f9..b4e62e0f 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index d15f962d..0ec5fc88 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index dc312b3a..ebe9dfd5 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 1eeac81c..b370f28e 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 9af309c9..8febc3eb 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 14acb365..d324eef0 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 11a031be..2e22e348 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 84fd643c..48631cff 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index a7e0c22a..769e07e3 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -163,7 +163,7 @@

    - + regcomp

    @@ -375,7 +375,7 @@

    - + regerror

    @@ -461,7 +461,7 @@ buffer.

    - + regexec

    @@ -529,7 +529,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index f6fab86c..9476dea1 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -415,7 +415,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index bdd5d505..0f5ebfa2 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -361,7 +361,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 8df0fae8..c51e185e 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -199,7 +199,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index a3b6db4b..34b7defd 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -357,7 +357,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index b6adc6ba..6aa991e0 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description
    regex_token_iterator();
    @@ -357,7 +357,7 @@
             m.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 36ebcebb..e4a5800c 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index e8ed8911..ab19052f 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members
    typedef typename std::iterator_traits<iterator>::value_type value_type;
    @@ -446,7 +446,7 @@
               
     
     
    - + sub_match non-member operators
    @@ -883,7 +883,7 @@ + m2.str().

    - + Stream inserter
    template <class charT, class traits, class BidirectionalIterator>
    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html
    index 38920736..3376eb45 100644
    --- a/doc/html/boost_regex/syntax/basic_extended.html
    +++ b/doc/html/boost_regex/syntax/basic_extended.html
    @@ -28,7 +28,7 @@
           Expression Syntax
     
     

    - + Synopsis

    @@ -44,7 +44,7 @@ boost::regex e2(my_expression, boost::regex::extended|boost::regex::icase);

    - + POSIX Extended Syntax

    @@ -54,7 +54,7 @@

    .[{}()\*+?|^$
    - + Wildcard:

    @@ -72,7 +72,7 @@

    - + Anchors:

    @@ -84,7 +84,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -96,7 +96,7 @@ to by a back-reference.

    - + Repeats:

    @@ -182,7 +182,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -212,7 +212,7 @@ cab

    - + Alternation

    @@ -225,7 +225,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -238,7 +238,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -247,7 +247,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -263,7 +263,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -272,7 +272,7 @@ cab range a-c.

    - + Character classes:
    @@ -282,7 +282,7 @@ cab character class names.

    - + Collating Elements:
    @@ -310,7 +310,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -327,7 +327,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -335,7 +335,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -361,7 +361,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -550,7 +550,7 @@ cab
    - + "Single character" character classes:
    @@ -704,7 +704,7 @@ cab
    - + Character Properties
    @@ -811,7 +811,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -886,7 +886,7 @@ cab

    - + Buffer boundaries
    @@ -977,7 +977,7 @@ cab
    - + Continuation Escape
    @@ -989,7 +989,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1003,7 +1003,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1054,7 +1054,7 @@ cab
    - + Any other escape
    @@ -1063,7 +1063,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1100,7 +1100,7 @@ cab
    - + What Gets Matched
    @@ -1110,11 +1110,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1135,7 +1135,7 @@ cab used with the -E option.

    - + awk

    @@ -1149,7 +1149,7 @@ cab these by default anyway.

    - + Options

    @@ -1162,7 +1162,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 9680dab0..19240445 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::basic|boost::regex::icase);

    - + POSIX Basic Syntax

    @@ -53,7 +53,7 @@

    .[\*^$
    - + Wildcard:

    @@ -71,7 +71,7 @@

    - + Anchors:

    @@ -83,7 +83,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -95,7 +95,7 @@ by a back-reference.

    - + Repeats:

    @@ -153,7 +153,7 @@ aaaa to.

    - + Back references:

    @@ -171,7 +171,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -184,7 +184,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -193,7 +193,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -209,7 +209,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -218,7 +218,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -228,7 +228,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -257,7 +257,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -274,7 +274,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -282,7 +282,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -297,7 +297,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -307,11 +307,11 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -329,7 +329,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -609,7 +609,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -623,7 +623,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 29c25b23..3d430ee1 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{}()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Possessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1048,7 +1048,7 @@ (?=\n?\z).

    - + Continuation Escape
    @@ -1060,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1073,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1125,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1168,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1177,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1222,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1249,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1323,7 +1323,7 @@
    - + Operator precedence
    @@ -1358,7 +1358,7 @@

    - + What gets matched

    @@ -1534,7 +1534,7 @@

    - + Variations

    @@ -1543,7 +1543,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1555,7 +1555,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1567,7 +1567,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 97eef55f..3990e327 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index 63ade3fa..a2e496b7 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -195,7 +195,7 @@

    - +

    Last revised: January 01, 2011 at 12:24:16 GMT

    Last revised: March 09, 2011 at 18:14:32 GMT


    From 887239389465e08754cd46b9dbb44e77f4e5aadb Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 18 Mar 2011 16:46:54 +0000 Subject: [PATCH 73/77] Add info on building/testing ICU with multiple compilers. Refs #4863. [SVN r70131] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 20 ++-- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 8 +- doc/html/boost_regex/install.html | 24 +++-- doc/html/boost_regex/ref/bad_expression.html | 4 +- doc/html/boost_regex/ref/basic_regex.html | 18 ++-- .../ref/concepts/traits_concept.html | 4 +- .../deprecated_interfaces/regex_format.html | 2 +- doc/html/boost_regex/ref/error_type.html | 4 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 4 +- .../ref/non_std_strings/icu/unicode_algo.html | 6 +- .../ref/non_std_strings/icu/unicode_iter.html | 4 +- .../non_std_strings/mfc_strings/mfc_algo.html | 10 +- .../non_std_strings/mfc_strings/mfc_iter.html | 4 +- doc/html/boost_regex/ref/posix.html | 8 +- doc/html/boost_regex/ref/regex_iterator.html | 4 +- doc/html/boost_regex/ref/regex_match.html | 4 +- doc/html/boost_regex/ref/regex_replace.html | 4 +- doc/html/boost_regex/ref/regex_search.html | 4 +- .../boost_regex/ref/regex_token_iterator.html | 4 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 8 +- .../boost_regex/syntax/basic_extended.html | 66 ++++++------- doc/html/boost_regex/syntax/basic_syntax.html | 44 ++++----- doc/html/boost_regex/syntax/perl_syntax.html | 96 +++++++++---------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/install.qbk | 6 ++ 32 files changed, 208 insertions(+), 194 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 3e975f5f..47fd2ecc 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -151,7 +151,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -177,7 +177,7 @@ Files: regex_timer.cpp.

    - + Code snippets
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 4c594ebc..bde59b6d 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -36,7 +36,7 @@ All issues including closed ones can be viewed here.

    - + Boost 1.47
    @@ -44,7 +44,7 @@ Fixed issues: #5223.

    - + Boost 1.44
    @@ -63,7 +63,7 @@ #3890

    - + Boost 1.42
    @@ -92,7 +92,7 @@
    - + Boost 1.40
    @@ -101,7 +101,7 @@ branch resets and recursive regular expressions.
    - + Boost 1.38
    @@ -129,7 +129,7 @@
    - + Boost 1.34
    @@ -152,7 +152,7 @@
    - + Boost 1.33.1
    @@ -222,7 +222,7 @@
    - + Boost 1.33.0
    @@ -277,7 +277,7 @@
    - + Boost 1.32.1
    @@ -285,7 +285,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
    - + Boost 1.31.0
    diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index f4dcfdad..33880c20 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -58,7 +58,7 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - + Win32 localization model.
    @@ -90,7 +90,7 @@ are treated as "unknown" graphic characters.

    - + C localization model.
    @@ -114,7 +114,7 @@ libraries including version 1 of this library.

    - + C++ localization model.
    @@ -151,7 +151,7 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - + Providing a message catalogue
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index f840f3b1..68fd4cd4 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -28,7 +28,7 @@ Conformance
    - + C++

    @@ -36,7 +36,7 @@ Report on C++ Library Extensions.

    - + ECMAScript / JavaScript
    @@ -49,7 +49,7 @@ rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

    - + Perl

    @@ -73,7 +73,7 @@ the Unicode requirements below.

    - + POSIX

    @@ -93,7 +93,7 @@ a custom traits class.

    - + Unicode

    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 1286b03e..4eb41562 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -35,7 +35,7 @@ accessed.

    - + Marked sub-expressions

    @@ -218,7 +218,7 @@ output stream.

    - + Unmatched Sub-Expressions

    @@ -231,7 +231,7 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - + Repeated Captures

    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index aca21e74..5e0f6fec 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

    @@ -40,7 +40,7 @@ you want a to output literal parenthesis.

    - + Conditionals

    @@ -79,7 +79,7 @@ ?{NAME}true-expression:false-expression

    - + Placeholder Sequences
    @@ -319,7 +319,7 @@ as a literal.

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 8e850980..ce667b30 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -49,7 +49,7 @@ file before you can use it, instructions for specific platforms are as follows:

    - + Building with bjam

    @@ -58,7 +58,7 @@ started guide for more information.

    - + Building With Unicode and ICU Support
    @@ -149,12 +149,20 @@ you are using is binary compatible with the toolset you use to build Boost.

    +

    + And finally, if you want to build/test with multiple compiler versions, all + with different ICU builds, then the only way to achieve that currently is to + modify your user-config.jam so that each toolset has the necessary compiler/linker + options set so that ICU is found automatically by the configuration step (providing + the ICU binaries use the standard names, all you have to add is the appropriate + header-include and linker-search paths). +

    - + Building via makefiles
    - + Borland C++ Builder:
    - + GCC(2.95 and later)

    @@ -356,7 +364,7 @@ see the config library documentation.

    - + Sun Workshop 6.1

    @@ -401,7 +409,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - + Makefiles for Other compilers
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 47154d27..2d11bb19 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -27,7 +27,7 @@ bad_expression
    - + Synopsis
    #include <boost/pattern_except.hpp>
    @@ -54,7 +54,7 @@
     } // namespace boost
     
    - + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index 2d60a9fb..9927497c 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -27,7 +27,7 @@
     basic_regex
     
     
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -244,7 +244,7 @@
     } // namespace boost
     
    - + Description

    @@ -325,7 +325,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -403,7 +403,7 @@ flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -506,7 +506,7 @@ specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -608,7 +608,7 @@ according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -716,7 +716,7 @@ flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -816,7 +816,7 @@ flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1002,7 +1002,7 @@ in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index a5d28aa1..be80bbd4 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -34,7 +34,7 @@ Boost-specific enhanced interface.

    - + Minimal requirements.
    @@ -378,7 +378,7 @@
    - + Additional Optional Requirements
    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index b4e62e0f..90df092e 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -34,7 +34,7 @@ previous version of Boost.Regex and will not be further updated:

    - + Algorithm regex_format
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 0ec5fc88..a8cd039a 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -27,7 +27,7 @@ error_type
    - + Synopsis

    @@ -57,7 +57,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index ebe9dfd5..e76b864f 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -69,7 +69,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index b370f28e..3cc8f202 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -27,7 +27,7 @@ match_results

    - + Synopsis
    #include <boost/regex.hpp>
    @@ -167,7 +167,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 8febc3eb..48867621 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -43,7 +43,7 @@ on to the "real" algorithm.

    - + u32regex_match

    @@ -89,7 +89,7 @@ }

    - + u32regex_search

    @@ -128,7 +128,7 @@ }

    - + u32regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index d324eef0..07ca66e2 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -28,7 +28,7 @@ Aware Regex Iterators

    - + u32regex_iterator

    @@ -126,7 +126,7 @@ Provided of course that the input is encoded as UTF-8.

    - + u32regex_token_iterator

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 2e22e348..fced7a46 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -34,7 +34,7 @@ here they are anyway:

    - + regex_match

    @@ -82,7 +82,7 @@ }

    - + regex_match (second overload)
    @@ -110,7 +110,7 @@ }
    - + regex_search

    @@ -149,7 +149,7 @@ }

    - + regex_search (second overload)
    @@ -164,7 +164,7 @@ + s.GetLength(), e, f);

    - + regex_replace

    diff --git a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index 48631cff..76ac2b79 100644 --- a/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -32,7 +32,7 @@ an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - + regex_iterator creation helper
    @@ -68,7 +68,7 @@ }
    - + regex_token_iterator creation helpers
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 769e07e3..93e70c4f 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -163,7 +163,7 @@

    - + regcomp

    @@ -375,7 +375,7 @@

    - + regerror

    @@ -461,7 +461,7 @@ buffer.

    - + regexec

    @@ -529,7 +529,7 @@

    - + regfree

    diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 9476dea1..5cc52f18 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -78,7 +78,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description

    @@ -415,7 +415,7 @@ m.

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 0f5ebfa2..2cb52851 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -80,7 +80,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -361,7 +361,7 @@
             Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index c51e185e..2dfae921 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter>
    @@ -199,7 +199,7 @@
             and then returns result.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 34b7defd..7353a683 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -73,7 +73,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
    @@ -357,7 +357,7 @@
             Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 6aa991e0..459f2615 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -136,7 +136,7 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - + Description
    regex_token_iterator();
    @@ -357,7 +357,7 @@
             m.
           

    - + Examples

    diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index e4a5800c..22fcad80 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -46,7 +46,7 @@ } // namespace boost

    - + Description

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index ab19052f..ac4c19ba 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -329,11 +329,11 @@ } // namespace boost

    - + Description
    - + Members
    typedef typename std::iterator_traits<iterator>::value_type value_type;
    @@ -446,7 +446,7 @@
               
     
     
    - + sub_match non-member operators
    @@ -883,7 +883,7 @@ + m2.str().

    - + Stream inserter
    template <class charT, class traits, class BidirectionalIterator>
    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html
    index 3376eb45..538fb781 100644
    --- a/doc/html/boost_regex/syntax/basic_extended.html
    +++ b/doc/html/boost_regex/syntax/basic_extended.html
    @@ -28,7 +28,7 @@
           Expression Syntax
     
     

    - + Synopsis

    @@ -44,7 +44,7 @@ boost::regex e2(my_expression, boost::regex::extended|boost::regex::icase);

    - + POSIX Extended Syntax

    @@ -54,7 +54,7 @@

    .[{}()\*+?|^$
    - + Wildcard:

    @@ -72,7 +72,7 @@

    - + Anchors:

    @@ -84,7 +84,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -96,7 +96,7 @@ to by a back-reference.

    - + Repeats:

    @@ -182,7 +182,7 @@ cab operator to be applied to.

    - + Back references:

    @@ -212,7 +212,7 @@ cab

    - + Alternation

    @@ -225,7 +225,7 @@ cab will match either of "abd" or "abef".

    - + Character sets:
    @@ -238,7 +238,7 @@ cab A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -247,7 +247,7 @@ cab or 'c'.

    - + Character ranges:
    @@ -263,7 +263,7 @@ cab the code points of the characters only.

    - + Negation:

    @@ -272,7 +272,7 @@ cab range a-c.

    - + Character classes:
    @@ -282,7 +282,7 @@ cab character class names.

    - + Collating Elements:
    @@ -310,7 +310,7 @@ cab matches a NUL character.

    - + Equivalence classes:
    @@ -327,7 +327,7 @@ cab or even all locales on one platform.

    - + Combinations:

    @@ -335,7 +335,7 @@ cab [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -361,7 +361,7 @@ cab extensions are also supported by Boost.Regex:

    - + Escapes matching a specific character
    @@ -550,7 +550,7 @@ cab
    - + "Single character" character classes:
    @@ -704,7 +704,7 @@ cab

    - + Character Properties
    @@ -811,7 +811,7 @@ cab matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -886,7 +886,7 @@ cab

    - + Buffer boundaries
    @@ -977,7 +977,7 @@ cab
    - + Continuation Escape
    @@ -989,7 +989,7 @@ cab match to start where the last one ended.

    - + Quoting escape
    @@ -1003,7 +1003,7 @@ cab \*+aaa
    - + Unicode escapes
    @@ -1054,7 +1054,7 @@ cab
    - + Any other escape
    @@ -1063,7 +1063,7 @@ cab \@ matches a literal '@'.

    - + Operator precedence
    @@ -1100,7 +1100,7 @@ cab
    - + What Gets Matched
    @@ -1110,11 +1110,11 @@ cab rule.

    - + Variations

    - + Egrep

    @@ -1135,7 +1135,7 @@ cab used with the -E option.

    - + awk

    @@ -1149,7 +1149,7 @@ cab these by default anyway.

    - + Options

    @@ -1162,7 +1162,7 @@ cab modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 19240445..05b11625 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -28,7 +28,7 @@ Expression Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::basic|boost::regex::icase);

    - + POSIX Basic Syntax

    @@ -53,7 +53,7 @@

    .[\*^$
    - + Wildcard:

    @@ -71,7 +71,7 @@

    - + Anchors:

    @@ -83,7 +83,7 @@ of an expression, or the last character of a sub-expression.

    - + Marked sub-expressions:
    @@ -95,7 +95,7 @@ by a back-reference.

    - + Repeats:

    @@ -153,7 +153,7 @@ aaaa to.

    - + Back references:

    @@ -171,7 +171,7 @@ aaaa

    aaabba
    - + Character sets:
    @@ -184,7 +184,7 @@ aaaa A bracket expression may contain any combination of the following:

    - + Single characters:
    @@ -193,7 +193,7 @@ aaaa or 'c'.

    - + Character ranges:
    @@ -209,7 +209,7 @@ aaaa of the characters only.

    - + Negation:

    @@ -218,7 +218,7 @@ aaaa range a-c.

    - + Character classes:
    @@ -228,7 +228,7 @@ aaaa character class names.

    - + Collating Elements:
    @@ -257,7 +257,7 @@ aaaa element names.

    - + Equivalence classes:
    @@ -274,7 +274,7 @@ aaaa or even all locales on one platform.

    - + Combinations:

    @@ -282,7 +282,7 @@ aaaa [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -297,7 +297,7 @@ aaaa will match either a literal '\' or a '^'.

    - + What Gets Matched

    @@ -307,11 +307,11 @@ aaaa rule.

    - + Variations

    - + Grep

    @@ -329,7 +329,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.

    - + emacs

    @@ -609,7 +609,7 @@ aaaa leftmost-longest rule.

    - + Options

    @@ -623,7 +623,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.

    - + References

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 3d430ee1..560fd763 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

    @@ -43,7 +43,7 @@ boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);

    - + Perl Regular Expression Syntax

    @@ -53,7 +53,7 @@

    .[{}()\*+?|^$
    - + Wildcard

    @@ -73,7 +73,7 @@

    - + Anchors

    @@ -83,7 +83,7 @@ A '$' character shall match the end of a line.

    - + Marked sub-expressions
    @@ -94,7 +94,7 @@ can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -107,7 +107,7 @@ without splitting out any separate sub-expressions.

    - + Repeats

    @@ -188,7 +188,7 @@ to be applied to.

    - + Non greedy repeats
    @@ -218,7 +218,7 @@ while consuming as little input as possible.

    - + Possessive repeats
    @@ -250,7 +250,7 @@ while giving nothing back.

    - + Back references

    @@ -360,7 +360,7 @@ named "two".

    - + Alternation

    @@ -387,7 +387,7 @@ (?:abc)?? has exactly the same effect.

    - + Character sets

    @@ -399,7 +399,7 @@ A bracket expression may contain any combination of the following:

    - + Single characters

    @@ -407,7 +407,7 @@ 'b', or 'c'.

    - + Character ranges
    @@ -421,7 +421,7 @@ sensitive.

    - + Negation

    @@ -430,7 +430,7 @@ matches any character that is not in the range a-c.

    - + Character classes
    @@ -441,7 +441,7 @@ class names.

    - + Collating Elements
    @@ -463,7 +463,7 @@ matches a \0 character.

    - + Equivalence classes
    @@ -480,7 +480,7 @@ or even all locales on one platform.

    - + Escaped Characters
    @@ -492,7 +492,7 @@ is not a "word" character.

    - + Combinations

    @@ -500,7 +500,7 @@ [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -692,7 +692,7 @@

    - + "Single character" character classes:
    @@ -894,7 +894,7 @@
    - + Character Properties
    @@ -1002,7 +1002,7 @@ as does \p{digit}.

    - + Word Boundaries

    @@ -1021,7 +1021,7 @@ \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -1048,7 +1048,7 @@ (?=\n?\z).

    - + Continuation Escape
    @@ -1060,7 +1060,7 @@ one ended.

    - + Quoting escape

    @@ -1073,7 +1073,7 @@ \*+aaa

    - + Unicode escapes

    @@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.

    - + Matching Line Endings
    @@ -1092,7 +1092,7 @@ sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]).

    - + Keeping back some text
    @@ -1107,7 +1107,7 @@ This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1116,7 +1116,7 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns
    @@ -1125,7 +1125,7 @@ (?.

    - + Named Subexpressions
    @@ -1147,14 +1147,14 @@ format string for search and replace operations, or in the match_results member functions.

    - + Comments

    (?# ... ) is treated as a comment, it's contents are ignored.

    - + Modifiers

    @@ -1168,7 +1168,7 @@ pattern only.

    - + Non-marking groups
    @@ -1177,7 +1177,7 @@ an additional sub-expression.

    - + Branch reset

    @@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4

    - + Lookahead

    @@ -1222,7 +1222,7 @@ could be used to validate the password.

    - + Lookbehind

    @@ -1236,7 +1236,7 @@ (pattern must be of fixed length).

    - + Independent sub-expressions
    @@ -1249,7 +1249,7 @@ no match is found at all.

    - + Recursive Expressions
    @@ -1273,7 +1273,7 @@ to the next sub-expression to be declared.

    - + Conditional Expressions
    @@ -1323,7 +1323,7 @@
    - + Operator precedence
    @@ -1358,7 +1358,7 @@

    - + What gets matched

    @@ -1534,7 +1534,7 @@

    - + Variations

    @@ -1543,7 +1543,7 @@ and JScript are all synonyms for perl.

    - + Options

    @@ -1555,7 +1555,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1567,7 +1567,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 3990e327..f88297e8 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -30,7 +30,7 @@ There are two ways to use Boost.Regex with Unicode strings:

    - + Rely on wchar_t

    @@ -56,7 +56,7 @@

    - + Use a Unicode Aware Regular Expression Type.
    diff --git a/doc/html/index.html b/doc/html/index.html index a2e496b7..870c10a9 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -28,7 +28,7 @@
    -

    +

    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)

    @@ -195,7 +195,7 @@

    - +

    Last revised: March 09, 2011 at 18:14:32 GMT

    Last revised: March 18, 2011 at 16:45:40 GMT


    diff --git a/doc/install.qbk b/doc/install.qbk index 375a0be2..a795fc66 100644 --- a/doc/install.qbk +++ b/doc/install.qbk @@ -93,6 +93,12 @@ that you are using to build Boost. Boost.Regex will not work correctly unless you ensure that this is the case: it is up to you to ensure that the version of ICU you are using is binary compatible with the toolset you use to build Boost.] +And finally, if you want to build/test with multiple compiler versions, all with different ICU +builds, then the only way to achieve that currently is to modify your user-config.jam so that +each toolset has the necessary compiler/linker options set so that ICU is found automatically +by the configuration step (providing the ICU binaries use the standard names, all you have to +add is the appropriate header-include and linker-search paths). + [h4 Building via makefiles] [h5 Borland C++ Builder:] From 3ce59d3bbd4ba1cf0701b9f59a6cb12f0084f9dc Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 6 Apr 2011 17:50:57 +0000 Subject: [PATCH 74/77] Fix issue with VC10 not compiling std::messages. [SVN r71038] --- include/boost/regex/config.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/boost/regex/config.hpp b/include/boost/regex/config.hpp index a88a7852..3b92e6ae 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -163,8 +163,10 @@ * with MSVC and the /Zc:wchar_t option we place some extra unsigned short versions * of the non-inline functions in the library, so that users can still link to the lib, * irrespective of whether their own code is built with /Zc:wchar_t. + * Note that this does NOT WORK with VC10 when the C++ locale is in effect as + * the locale's facets simply do not compile in that case. */ -#if defined(__cplusplus) && (defined(BOOST_MSVC) || defined(__ICL)) && !defined(BOOST_NO_INTRINSIC_WCHAR_T) && defined(BOOST_WINDOWS) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) && !defined(BOOST_RWSTD_VER) +#if defined(__cplusplus) && (defined(BOOST_MSVC) || defined(__ICL)) && !defined(BOOST_NO_INTRINSIC_WCHAR_T) && defined(BOOST_WINDOWS) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) && !defined(BOOST_RWSTD_VER) && ((_MSC_VER < 1600) || !defined(BOOST_REGEX_USE_CPP_LOCALE)) # define BOOST_REGEX_HAS_OTHER_WCHAR_T # ifdef BOOST_MSVC # pragma warning(push) From 337f7036df79fc5a54c3f208bc0b922cf3c55913 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 14 Apr 2011 07:53:28 +0000 Subject: [PATCH 75/77] Apply patches from #5462. Add new test case to verify patches are actually working and prevent future breakage! Fixes #5462. [SVN r71240] --- include/boost/regex/pending/object_cache.hpp | 2 +- include/boost/regex/v4/basic_regex.hpp | 8 ++-- include/boost/regex/v4/cpp_regex_traits.hpp | 12 ++++- test/Jamfile.v2 | 12 +++++ test/noeh_test/Jamfile.v2 | 50 ++++++++++++++++++++ test/regress/main.cpp | 12 +++++ 6 files changed, 89 insertions(+), 7 deletions(-) create mode 100644 test/noeh_test/Jamfile.v2 diff --git a/include/boost/regex/pending/object_cache.hpp b/include/boost/regex/pending/object_cache.hpp index db60e28a..05b6bfa2 100644 --- a/include/boost/regex/pending/object_cache.hpp +++ b/include/boost/regex/pending/object_cache.hpp @@ -73,7 +73,7 @@ boost::shared_ptr object_cache::get(const Key& k, siz // for now just throw, but we should never really get here... // ::boost::throw_exception(std::runtime_error("Error in thread safety code: could not acquire a lock")); -#ifdef BOOST_NO_UNREACHABLE_RETURN_DETECTION +#if defined(BOOST_NO_UNREACHABLE_RETURN_DETECTION) || defined(BOOST_NO_EXCEPTIONS) return boost::shared_ptr(); #endif #else diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index 04c7bb37..53b7bcaa 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -1,7 +1,7 @@ /* * - * Copyright (c) 1998-2004 - * John Maddock + * Copyright (c) 1998-2004 John Maddock + * Copyright 2011 Garmin Ltd. or its subsidiaries * * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at @@ -234,7 +234,7 @@ public: std::pair BOOST_REGEX_CALL subexpression(std::size_t n)const { if(n == 0) - throw std::out_of_range("0 is not a valid subexpression index."); + boost::throw_exception(std::out_of_range("0 is not a valid subexpression index.")); const std::pair& pi = this->m_subs.at(n - 1); std::pair p(expression() + pi.first, expression() + pi.second); return p; @@ -487,7 +487,7 @@ public: std::pair BOOST_REGEX_CALL subexpression(std::size_t n)const { if(!m_pimpl.get()) - throw std::logic_error("Can't access subexpressions in an invalid regex."); + boost::throw_exception(std::logic_error("Can't access subexpressions in an invalid regex.")); return m_pimpl->subexpression(n); } const_iterator BOOST_REGEX_CALL begin()const diff --git a/include/boost/regex/v4/cpp_regex_traits.hpp b/include/boost/regex/v4/cpp_regex_traits.hpp index cd22bd8e..bcae455a 100644 --- a/include/boost/regex/v4/cpp_regex_traits.hpp +++ b/include/boost/regex/v4/cpp_regex_traits.hpp @@ -1,7 +1,7 @@ /* * - * Copyright (c) 2004 - * John Maddock + * Copyright (c) 2004 John Maddock + * Copyright 2011 Garmin Ltd. or its subsidiaries * * Use, modification and distribution are subject to the * Boost Software License, Version 1.0. (See accompanying file @@ -511,7 +511,9 @@ typename cpp_regex_traits_implementation::string_type // however at least one std lib will always throw // std::bad_alloc for certain arguments... // +#ifndef BOOST_NO_EXCEPTIONS try{ +#endif // // What we do here depends upon the format of the sort key returned by // sort key returned by this->transform: @@ -546,7 +548,9 @@ typename cpp_regex_traits_implementation::string_type result.erase(i); break; } +#ifndef BOOST_NO_EXCEPTIONS }catch(...){} +#endif while(result.size() && (charT(0) == *result.rbegin())) result.erase(result.size() - 1); if(result.empty()) @@ -576,7 +580,9 @@ typename cpp_regex_traits_implementation::string_type // std::bad_alloc for certain arguments... // string_type result; +#ifndef BOOST_NO_EXCEPTIONS try{ +#endif result = this->m_pcollate->transform(p1, p2); // // Borland's STLPort version returns a NULL-terminated @@ -593,10 +599,12 @@ typename cpp_regex_traits_implementation::string_type result.erase(result.size() - 1); #endif BOOST_ASSERT(std::find(result.begin(), result.end(), charT(0)) == result.end()); +#ifndef BOOST_NO_EXCEPTIONS } catch(...) { } +#endif return result; } diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index ce198b56..d31366f2 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -174,6 +174,18 @@ test-suite regex : # requirements BOOST_REGEX_RECURSIVE=1 : regex_regress_recursive ] + +[ run regress/$(R_SOURCE) ./noeh_test//boost_regex_noeh + ../build//icu_options + : # command line + : # input files + : # requirements + BOOST_NO_EXCEPTIONS=1 + off + static + shared + : regex_regress_noeh ] + ; build-project ../example ; diff --git a/test/noeh_test/Jamfile.v2 b/test/noeh_test/Jamfile.v2 new file mode 100644 index 00000000..dcaa84b9 --- /dev/null +++ b/test/noeh_test/Jamfile.v2 @@ -0,0 +1,50 @@ +# copyright John Maddock 2011 +# 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. + +project + : requirements + multi + shared:BOOST_REGEX_DYN_LINK=1 + msvc-7.1:TEST_MFC=1 + msvc-7.0:TEST_MFC=1 + msvc:on + # There are unidentified linker problems on these platforms: + mipspro-7.4:static + sun-5.9:static + all + gcc:-Wextra + gcc:-Wshadow + U_USING_ICU_NAMESPACE=0 + #gcc-mw:static + #gcc-mingw:static + gcc-cygwin:static + ; + + +lib boost_regex_noeh : + ../../src/c_regex_traits.cpp + ../../src/cpp_regex_traits.cpp + ../../src/cregex.cpp + ../../src/fileiter.cpp + ../../src/icu.cpp + ../../src/instances.cpp + ../../src/posix_api.cpp + ../../src/regex.cpp + ../../src/regex_debug.cpp + ../../src/regex_raw_buffer.cpp + ../../src/regex_traits_defaults.cpp + ../../src/static_mutex.cpp + ../../src/w32_regex_traits.cpp + ../../src/wc_regex_traits.cpp + ../../src/wide_posix_api.cpp + ../../src/winstances.cpp + ../../src/usinstances.cpp + ../../build//icu_options + : + static + BOOST_NO_EXCEPTIONS=1 + off + : + ; \ No newline at end of file diff --git a/test/regress/main.cpp b/test/regress/main.cpp index 50315794..85ece016 100644 --- a/test/regress/main.cpp +++ b/test/regress/main.cpp @@ -208,4 +208,16 @@ void test(const wchar_t& c, const test_invalid_regex_tag& tag) } #endif +#ifdef BOOST_NO_EXCETIONS +namespace boost{ + +void throw_exception( std::exception const & e ) +{ + std::cerr << e.what() << std::endl; + std::exit(1); +} + +} +#endif + #include From 16bf9d85010706218a83e9a814af5692625cbede Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 25 Apr 2011 09:27:11 +0000 Subject: [PATCH 76/77] Update version number, fixes #5353. [SVN r71476] --- build/bcb6.mak | 1124 ++++++++++++++++++++-------------------- build/gcc-shared.mak | 168 +++--- build/gcc.mak | 172 +++--- build/vc10.mak | 550 ++++++++++---------- build/vc6-stlport.mak | 554 ++++++++++---------- build/vc6.mak | 736 +++++++++++++------------- build/vc7-stlport.mak | 554 ++++++++++---------- build/vc7.mak | 736 +++++++++++++------------- build/vc71-stlport.mak | 554 ++++++++++---------- build/vc71.mak | 736 +++++++++++++------------- build/vc8.mak | 736 +++++++++++++------------- build/vc9.mak | 550 ++++++++++---------- 12 files changed, 3585 insertions(+), 3585 deletions(-) diff --git a/build/bcb6.mak b/build/bcb6.mak index a1d99a3c..4fea7c08 100644 --- a/build/bcb6.mak +++ b/build/bcb6.mak @@ -41,31 +41,31 @@ BCROOT=$(MAKEDIR)\.. ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : bcb bcb\libboost_regex-bcb-s-1_46 bcb\libboost_regex-bcb-s-1_46.lib bcb\libboost_regex-bcb-mt-s-1_46 bcb\libboost_regex-bcb-mt-s-1_46.lib bcb\boost_regex-bcb-mt-1_46 bcb\boost_regex-bcb-mt-1_46.lib bcb\boost_regex-bcb-1_46 bcb\boost_regex-bcb-1_46.lib bcb\libboost_regex-bcb-mt-1_46 bcb\libboost_regex-bcb-mt-1_46.lib bcb\libboost_regex-bcb-1_46 bcb\libboost_regex-bcb-1_46.lib bcb\libboost_regex-bcb-sd-1_46 bcb\libboost_regex-bcb-sd-1_46.lib bcb\libboost_regex-bcb-mt-sd-1_46 bcb\libboost_regex-bcb-mt-sd-1_46.lib bcb\boost_regex-bcb-mt-d-1_46 bcb\boost_regex-bcb-mt-d-1_46.lib bcb\boost_regex-bcb-d-1_46 bcb\boost_regex-bcb-d-1_46.lib bcb\libboost_regex-bcb-mt-d-1_46 bcb\libboost_regex-bcb-mt-d-1_46.lib bcb\libboost_regex-bcb-d-1_46 bcb\libboost_regex-bcb-d-1_46.lib +all : bcb bcb\libboost_regex-bcb-s-1_47 bcb\libboost_regex-bcb-s-1_47.lib bcb\libboost_regex-bcb-mt-s-1_47 bcb\libboost_regex-bcb-mt-s-1_47.lib bcb\boost_regex-bcb-mt-1_47 bcb\boost_regex-bcb-mt-1_47.lib bcb\boost_regex-bcb-1_47 bcb\boost_regex-bcb-1_47.lib bcb\libboost_regex-bcb-mt-1_47 bcb\libboost_regex-bcb-mt-1_47.lib bcb\libboost_regex-bcb-1_47 bcb\libboost_regex-bcb-1_47.lib bcb\libboost_regex-bcb-sd-1_47 bcb\libboost_regex-bcb-sd-1_47.lib bcb\libboost_regex-bcb-mt-sd-1_47 bcb\libboost_regex-bcb-mt-sd-1_47.lib bcb\boost_regex-bcb-mt-d-1_47 bcb\boost_regex-bcb-mt-d-1_47.lib bcb\boost_regex-bcb-d-1_47 bcb\boost_regex-bcb-d-1_47.lib bcb\libboost_regex-bcb-mt-d-1_47 bcb\libboost_regex-bcb-mt-d-1_47.lib bcb\libboost_regex-bcb-d-1_47 bcb\libboost_regex-bcb-d-1_47.lib -clean : libboost_regex-bcb-s-1_46_clean libboost_regex-bcb-mt-s-1_46_clean boost_regex-bcb-mt-1_46_clean boost_regex-bcb-1_46_clean libboost_regex-bcb-mt-1_46_clean libboost_regex-bcb-1_46_clean libboost_regex-bcb-sd-1_46_clean libboost_regex-bcb-mt-sd-1_46_clean boost_regex-bcb-mt-d-1_46_clean boost_regex-bcb-d-1_46_clean libboost_regex-bcb-mt-d-1_46_clean libboost_regex-bcb-d-1_46_clean +clean : libboost_regex-bcb-s-1_47_clean libboost_regex-bcb-mt-s-1_47_clean boost_regex-bcb-mt-1_47_clean boost_regex-bcb-1_47_clean libboost_regex-bcb-mt-1_47_clean libboost_regex-bcb-1_47_clean libboost_regex-bcb-sd-1_47_clean libboost_regex-bcb-mt-sd-1_47_clean boost_regex-bcb-mt-d-1_47_clean boost_regex-bcb-d-1_47_clean libboost_regex-bcb-mt-d-1_47_clean libboost_regex-bcb-d-1_47_clean install : all - copy bcb\libboost_regex-bcb-s-1_46.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-s-1_46.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_46.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_46.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-1_46.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_46.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-1_46.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_46.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-1_46.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-1_46.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-sd-1_46.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-sd-1_46.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_46.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_46.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-d-1_46.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_46.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-d-1_46.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_46.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-d-1_46.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-d-1_46.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-s-1_47.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-s-1_47.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_47.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_47.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-1_47.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_47.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-1_47.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_47.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-1_47.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-1_47.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-sd-1_47.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-sd-1_47.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_47.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_47.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-d-1_47.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_47.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-d-1_47.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_47.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-d-1_47.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-d-1_47.lib $(BCROOT)\lib bcb : -@mkdir bcb @@ -73,1265 +73,1265 @@ bcb : ######################################################## # -# section for libboost_regex-bcb-s-1_46.lib +# section for libboost_regex-bcb-s-1_47.lib # ######################################################## -bcb\libboost_regex-bcb-s-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-s-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-s-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-s-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-s-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-s-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-s-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-s-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-s-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-s-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-s-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-s-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-s-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-s-1_47\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-s-1_46 : - -@mkdir bcb\libboost_regex-bcb-s-1_46 +bcb\libboost_regex-bcb-s-1_47 : + -@mkdir bcb\libboost_regex-bcb-s-1_47 -libboost_regex-bcb-s-1_46_clean : - del bcb\libboost_regex-bcb-s-1_46\*.obj - del bcb\libboost_regex-bcb-s-1_46\*.il? - del bcb\libboost_regex-bcb-s-1_46\*.csm - del bcb\libboost_regex-bcb-s-1_46\*.tds +libboost_regex-bcb-s-1_47_clean : + del bcb\libboost_regex-bcb-s-1_47\*.obj + del bcb\libboost_regex-bcb-s-1_47\*.il? + del bcb\libboost_regex-bcb-s-1_47\*.csm + del bcb\libboost_regex-bcb-s-1_47\*.tds -bcb\libboost_regex-bcb-s-1_46.lib : bcb\libboost_regex-bcb-s-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_46\cregex.obj bcb\libboost_regex-bcb-s-1_46\fileiter.obj bcb\libboost_regex-bcb-s-1_46\icu.obj bcb\libboost_regex-bcb-s-1_46\instances.obj bcb\libboost_regex-bcb-s-1_46\posix_api.obj bcb\libboost_regex-bcb-s-1_46\regex.obj bcb\libboost_regex-bcb-s-1_46\regex_debug.obj bcb\libboost_regex-bcb-s-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_46\static_mutex.obj bcb\libboost_regex-bcb-s-1_46\usinstances.obj bcb\libboost_regex-bcb-s-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_46\winstances.obj - if exist bcb\libboost_regex-bcb-s-1_46.lib del bcb\libboost_regex-bcb-s-1_46.lib +bcb\libboost_regex-bcb-s-1_47.lib : bcb\libboost_regex-bcb-s-1_47\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_47\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_47\cregex.obj bcb\libboost_regex-bcb-s-1_47\fileiter.obj bcb\libboost_regex-bcb-s-1_47\icu.obj bcb\libboost_regex-bcb-s-1_47\instances.obj bcb\libboost_regex-bcb-s-1_47\posix_api.obj bcb\libboost_regex-bcb-s-1_47\regex.obj bcb\libboost_regex-bcb-s-1_47\regex_debug.obj bcb\libboost_regex-bcb-s-1_47\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_47\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_47\static_mutex.obj bcb\libboost_regex-bcb-s-1_47\usinstances.obj bcb\libboost_regex-bcb-s-1_47\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_47\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_47\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_47\winstances.obj + if exist bcb\libboost_regex-bcb-s-1_47.lib del bcb\libboost_regex-bcb-s-1_47.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_46.lib" +"bcb\libboost_regex-bcb-s-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_46\cregex.obj" +"bcb\libboost_regex-bcb-s-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_46\icu.obj" +"bcb\libboost_regex-bcb-s-1_46\instances.obj" +"bcb\libboost_regex-bcb-s-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_46\regex.obj" +"bcb\libboost_regex-bcb-s-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_46\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_47.lib" +"bcb\libboost_regex-bcb-s-1_47\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_47\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_47\cregex.obj" +"bcb\libboost_regex-bcb-s-1_47\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_47\icu.obj" +"bcb\libboost_regex-bcb-s-1_47\instances.obj" +"bcb\libboost_regex-bcb-s-1_47\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_47\regex.obj" +"bcb\libboost_regex-bcb-s-1_47\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_47\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_47\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_47\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_47\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_47\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_47\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_47\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_47\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-s-1_46.lib +# section for libboost_regex-bcb-mt-s-1_47.lib # ######################################################## -bcb\libboost_regex-bcb-mt-s-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-s-1_47\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_46 : - -@mkdir bcb\libboost_regex-bcb-mt-s-1_46 +bcb\libboost_regex-bcb-mt-s-1_47 : + -@mkdir bcb\libboost_regex-bcb-mt-s-1_47 -libboost_regex-bcb-mt-s-1_46_clean : - del bcb\libboost_regex-bcb-mt-s-1_46\*.obj - del bcb\libboost_regex-bcb-mt-s-1_46\*.il? - del bcb\libboost_regex-bcb-mt-s-1_46\*.csm - del bcb\libboost_regex-bcb-mt-s-1_46\*.tds +libboost_regex-bcb-mt-s-1_47_clean : + del bcb\libboost_regex-bcb-mt-s-1_47\*.obj + del bcb\libboost_regex-bcb-mt-s-1_47\*.il? + del bcb\libboost_regex-bcb-mt-s-1_47\*.csm + del bcb\libboost_regex-bcb-mt-s-1_47\*.tds -bcb\libboost_regex-bcb-mt-s-1_46.lib : bcb\libboost_regex-bcb-mt-s-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_46\cregex.obj bcb\libboost_regex-bcb-mt-s-1_46\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_46\icu.obj bcb\libboost_regex-bcb-mt-s-1_46\instances.obj bcb\libboost_regex-bcb-mt-s-1_46\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_46\regex.obj bcb\libboost_regex-bcb-mt-s-1_46\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_46\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_46\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_46\winstances.obj - if exist bcb\libboost_regex-bcb-mt-s-1_46.lib del bcb\libboost_regex-bcb-mt-s-1_46.lib +bcb\libboost_regex-bcb-mt-s-1_47.lib : bcb\libboost_regex-bcb-mt-s-1_47\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_47\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_47\cregex.obj bcb\libboost_regex-bcb-mt-s-1_47\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_47\icu.obj bcb\libboost_regex-bcb-mt-s-1_47\instances.obj bcb\libboost_regex-bcb-mt-s-1_47\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_47\regex.obj bcb\libboost_regex-bcb-mt-s-1_47\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_47\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_47\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_47\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_47\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_47\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_47\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_47\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_47\winstances.obj + if exist bcb\libboost_regex-bcb-mt-s-1_47.lib del bcb\libboost_regex-bcb-mt-s-1_47.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_46.lib" +"bcb\libboost_regex-bcb-mt-s-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_46\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_47.lib" +"bcb\libboost_regex-bcb-mt-s-1_47\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_47\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-1_46.lib +# section for boost_regex-bcb-mt-1_47.lib # ######################################################## -bcb\boost_regex-bcb-mt-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-1_47\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-1_46 : - -@mkdir bcb\boost_regex-bcb-mt-1_46 +bcb\boost_regex-bcb-mt-1_47 : + -@mkdir bcb\boost_regex-bcb-mt-1_47 -boost_regex-bcb-mt-1_46_clean : - del bcb\boost_regex-bcb-mt-1_46\*.obj - del bcb\boost_regex-bcb-mt-1_46\*.il? - del bcb\boost_regex-bcb-mt-1_46\*.csm - del bcb\boost_regex-bcb-mt-1_46\*.tds +boost_regex-bcb-mt-1_47_clean : + del bcb\boost_regex-bcb-mt-1_47\*.obj + del bcb\boost_regex-bcb-mt-1_47\*.il? + del bcb\boost_regex-bcb-mt-1_47\*.csm + del bcb\boost_regex-bcb-mt-1_47\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-1_46.lib : bcb\boost_regex-bcb-mt-1_46\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\cregex.obj bcb\boost_regex-bcb-mt-1_46\fileiter.obj bcb\boost_regex-bcb-mt-1_46\icu.obj bcb\boost_regex-bcb-mt-1_46\instances.obj bcb\boost_regex-bcb-mt-1_46\posix_api.obj bcb\boost_regex-bcb-mt-1_46\regex.obj bcb\boost_regex-bcb-mt-1_46\regex_debug.obj bcb\boost_regex-bcb-mt-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_46\static_mutex.obj bcb\boost_regex-bcb-mt-1_46\usinstances.obj bcb\boost_regex-bcb-mt-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_46\winstances.obj +bcb\boost_regex-bcb-mt-1_47.lib : bcb\boost_regex-bcb-mt-1_47\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_47\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_47\cregex.obj bcb\boost_regex-bcb-mt-1_47\fileiter.obj bcb\boost_regex-bcb-mt-1_47\icu.obj bcb\boost_regex-bcb-mt-1_47\instances.obj bcb\boost_regex-bcb-mt-1_47\posix_api.obj bcb\boost_regex-bcb-mt-1_47\regex.obj bcb\boost_regex-bcb-mt-1_47\regex_debug.obj bcb\boost_regex-bcb-mt-1_47\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_47\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_47\static_mutex.obj bcb\boost_regex-bcb-mt-1_47\usinstances.obj bcb\boost_regex-bcb-mt-1_47\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_47\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_47\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_47\winstances.obj bcc32 @&&| --lw-dup -lw-dpl -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-mt-1_46.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_46\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\cregex.obj bcb\boost_regex-bcb-mt-1_46\fileiter.obj bcb\boost_regex-bcb-mt-1_46\icu.obj bcb\boost_regex-bcb-mt-1_46\instances.obj bcb\boost_regex-bcb-mt-1_46\posix_api.obj bcb\boost_regex-bcb-mt-1_46\regex.obj bcb\boost_regex-bcb-mt-1_46\regex_debug.obj bcb\boost_regex-bcb-mt-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_46\static_mutex.obj bcb\boost_regex-bcb-mt-1_46\usinstances.obj bcb\boost_regex-bcb-mt-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_46\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_46\winstances.obj $(LIBS) +-lw-dup -lw-dpl -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-mt-1_47.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_47\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_47\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_47\cregex.obj bcb\boost_regex-bcb-mt-1_47\fileiter.obj bcb\boost_regex-bcb-mt-1_47\icu.obj bcb\boost_regex-bcb-mt-1_47\instances.obj bcb\boost_regex-bcb-mt-1_47\posix_api.obj bcb\boost_regex-bcb-mt-1_47\regex.obj bcb\boost_regex-bcb-mt-1_47\regex_debug.obj bcb\boost_regex-bcb-mt-1_47\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_47\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_47\static_mutex.obj bcb\boost_regex-bcb-mt-1_47\usinstances.obj bcb\boost_regex-bcb-mt-1_47\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_47\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_47\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_47\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-1_46.lib bcb\boost_regex-bcb-mt-1_46.dll + implib -w bcb\boost_regex-bcb-mt-1_47.lib bcb\boost_regex-bcb-mt-1_47.dll ######################################################## # -# section for boost_regex-bcb-1_46.lib +# section for boost_regex-bcb-1_47.lib # ######################################################## -bcb\boost_regex-bcb-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-1_47\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-1_46 : - -@mkdir bcb\boost_regex-bcb-1_46 +bcb\boost_regex-bcb-1_47 : + -@mkdir bcb\boost_regex-bcb-1_47 -boost_regex-bcb-1_46_clean : - del bcb\boost_regex-bcb-1_46\*.obj - del bcb\boost_regex-bcb-1_46\*.il? - del bcb\boost_regex-bcb-1_46\*.csm - del bcb\boost_regex-bcb-1_46\*.tds +boost_regex-bcb-1_47_clean : + del bcb\boost_regex-bcb-1_47\*.obj + del bcb\boost_regex-bcb-1_47\*.il? + del bcb\boost_regex-bcb-1_47\*.csm + del bcb\boost_regex-bcb-1_47\*.tds del bcb\*.tds -bcb\boost_regex-bcb-1_46.lib : bcb\boost_regex-bcb-1_46\c_regex_traits.obj bcb\boost_regex-bcb-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-1_46\cregex.obj bcb\boost_regex-bcb-1_46\fileiter.obj bcb\boost_regex-bcb-1_46\icu.obj bcb\boost_regex-bcb-1_46\instances.obj bcb\boost_regex-bcb-1_46\posix_api.obj bcb\boost_regex-bcb-1_46\regex.obj bcb\boost_regex-bcb-1_46\regex_debug.obj bcb\boost_regex-bcb-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-1_46\static_mutex.obj bcb\boost_regex-bcb-1_46\usinstances.obj bcb\boost_regex-bcb-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-1_46\wide_posix_api.obj bcb\boost_regex-bcb-1_46\winstances.obj +bcb\boost_regex-bcb-1_47.lib : bcb\boost_regex-bcb-1_47\c_regex_traits.obj bcb\boost_regex-bcb-1_47\cpp_regex_traits.obj bcb\boost_regex-bcb-1_47\cregex.obj bcb\boost_regex-bcb-1_47\fileiter.obj bcb\boost_regex-bcb-1_47\icu.obj bcb\boost_regex-bcb-1_47\instances.obj bcb\boost_regex-bcb-1_47\posix_api.obj bcb\boost_regex-bcb-1_47\regex.obj bcb\boost_regex-bcb-1_47\regex_debug.obj bcb\boost_regex-bcb-1_47\regex_raw_buffer.obj bcb\boost_regex-bcb-1_47\regex_traits_defaults.obj bcb\boost_regex-bcb-1_47\static_mutex.obj bcb\boost_regex-bcb-1_47\usinstances.obj bcb\boost_regex-bcb-1_47\w32_regex_traits.obj bcb\boost_regex-bcb-1_47\wc_regex_traits.obj bcb\boost_regex-bcb-1_47\wide_posix_api.obj bcb\boost_regex-bcb-1_47\winstances.obj bcc32 @&&| --lw-dup -lw-dpl -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-1_46.dll $(XLFLAGS) bcb\boost_regex-bcb-1_46\c_regex_traits.obj bcb\boost_regex-bcb-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-1_46\cregex.obj bcb\boost_regex-bcb-1_46\fileiter.obj bcb\boost_regex-bcb-1_46\icu.obj bcb\boost_regex-bcb-1_46\instances.obj bcb\boost_regex-bcb-1_46\posix_api.obj bcb\boost_regex-bcb-1_46\regex.obj bcb\boost_regex-bcb-1_46\regex_debug.obj bcb\boost_regex-bcb-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-1_46\static_mutex.obj bcb\boost_regex-bcb-1_46\usinstances.obj bcb\boost_regex-bcb-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-1_46\wide_posix_api.obj bcb\boost_regex-bcb-1_46\winstances.obj $(LIBS) +-lw-dup -lw-dpl -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-1_47.dll $(XLFLAGS) bcb\boost_regex-bcb-1_47\c_regex_traits.obj bcb\boost_regex-bcb-1_47\cpp_regex_traits.obj bcb\boost_regex-bcb-1_47\cregex.obj bcb\boost_regex-bcb-1_47\fileiter.obj bcb\boost_regex-bcb-1_47\icu.obj bcb\boost_regex-bcb-1_47\instances.obj bcb\boost_regex-bcb-1_47\posix_api.obj bcb\boost_regex-bcb-1_47\regex.obj bcb\boost_regex-bcb-1_47\regex_debug.obj bcb\boost_regex-bcb-1_47\regex_raw_buffer.obj bcb\boost_regex-bcb-1_47\regex_traits_defaults.obj bcb\boost_regex-bcb-1_47\static_mutex.obj bcb\boost_regex-bcb-1_47\usinstances.obj bcb\boost_regex-bcb-1_47\w32_regex_traits.obj bcb\boost_regex-bcb-1_47\wc_regex_traits.obj bcb\boost_regex-bcb-1_47\wide_posix_api.obj bcb\boost_regex-bcb-1_47\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-1_46.lib bcb\boost_regex-bcb-1_46.dll + implib -w bcb\boost_regex-bcb-1_47.lib bcb\boost_regex-bcb-1_47.dll ######################################################## # -# section for libboost_regex-bcb-mt-1_46.lib +# section for libboost_regex-bcb-mt-1_47.lib # ######################################################## -bcb\libboost_regex-bcb-mt-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-1_47\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-1_46 : - -@mkdir bcb\libboost_regex-bcb-mt-1_46 +bcb\libboost_regex-bcb-mt-1_47 : + -@mkdir bcb\libboost_regex-bcb-mt-1_47 -libboost_regex-bcb-mt-1_46_clean : - del bcb\libboost_regex-bcb-mt-1_46\*.obj - del bcb\libboost_regex-bcb-mt-1_46\*.il? - del bcb\libboost_regex-bcb-mt-1_46\*.csm - del bcb\libboost_regex-bcb-mt-1_46\*.tds +libboost_regex-bcb-mt-1_47_clean : + del bcb\libboost_regex-bcb-mt-1_47\*.obj + del bcb\libboost_regex-bcb-mt-1_47\*.il? + del bcb\libboost_regex-bcb-mt-1_47\*.csm + del bcb\libboost_regex-bcb-mt-1_47\*.tds -bcb\libboost_regex-bcb-mt-1_46.lib : bcb\libboost_regex-bcb-mt-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_46\cregex.obj bcb\libboost_regex-bcb-mt-1_46\fileiter.obj bcb\libboost_regex-bcb-mt-1_46\icu.obj bcb\libboost_regex-bcb-mt-1_46\instances.obj bcb\libboost_regex-bcb-mt-1_46\posix_api.obj bcb\libboost_regex-bcb-mt-1_46\regex.obj bcb\libboost_regex-bcb-mt-1_46\regex_debug.obj bcb\libboost_regex-bcb-mt-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_46\static_mutex.obj bcb\libboost_regex-bcb-mt-1_46\usinstances.obj bcb\libboost_regex-bcb-mt-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_46\winstances.obj - if exist bcb\libboost_regex-bcb-mt-1_46.lib del bcb\libboost_regex-bcb-mt-1_46.lib +bcb\libboost_regex-bcb-mt-1_47.lib : bcb\libboost_regex-bcb-mt-1_47\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_47\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_47\cregex.obj bcb\libboost_regex-bcb-mt-1_47\fileiter.obj bcb\libboost_regex-bcb-mt-1_47\icu.obj bcb\libboost_regex-bcb-mt-1_47\instances.obj bcb\libboost_regex-bcb-mt-1_47\posix_api.obj bcb\libboost_regex-bcb-mt-1_47\regex.obj bcb\libboost_regex-bcb-mt-1_47\regex_debug.obj bcb\libboost_regex-bcb-mt-1_47\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_47\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_47\static_mutex.obj bcb\libboost_regex-bcb-mt-1_47\usinstances.obj bcb\libboost_regex-bcb-mt-1_47\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_47\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_47\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_47\winstances.obj + if exist bcb\libboost_regex-bcb-mt-1_47.lib del bcb\libboost_regex-bcb-mt-1_47.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_46.lib" +"bcb\libboost_regex-bcb-mt-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_46\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_46\icu.obj" +"bcb\libboost_regex-bcb-mt-1_46\instances.obj" +"bcb\libboost_regex-bcb-mt-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_46\regex.obj" +"bcb\libboost_regex-bcb-mt-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_46\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_47.lib" +"bcb\libboost_regex-bcb-mt-1_47\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_47\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_47\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_47\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_47\icu.obj" +"bcb\libboost_regex-bcb-mt-1_47\instances.obj" +"bcb\libboost_regex-bcb-mt-1_47\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_47\regex.obj" +"bcb\libboost_regex-bcb-mt-1_47\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_47\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_47\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_47\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_47\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_47\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_47\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_47\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_47\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-1_46.lib +# section for libboost_regex-bcb-1_47.lib # ######################################################## -bcb\libboost_regex-bcb-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -O2 -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-1_47\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-1_46 : - -@mkdir bcb\libboost_regex-bcb-1_46 +bcb\libboost_regex-bcb-1_47 : + -@mkdir bcb\libboost_regex-bcb-1_47 -libboost_regex-bcb-1_46_clean : - del bcb\libboost_regex-bcb-1_46\*.obj - del bcb\libboost_regex-bcb-1_46\*.il? - del bcb\libboost_regex-bcb-1_46\*.csm - del bcb\libboost_regex-bcb-1_46\*.tds +libboost_regex-bcb-1_47_clean : + del bcb\libboost_regex-bcb-1_47\*.obj + del bcb\libboost_regex-bcb-1_47\*.il? + del bcb\libboost_regex-bcb-1_47\*.csm + del bcb\libboost_regex-bcb-1_47\*.tds -bcb\libboost_regex-bcb-1_46.lib : bcb\libboost_regex-bcb-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_46\cregex.obj bcb\libboost_regex-bcb-1_46\fileiter.obj bcb\libboost_regex-bcb-1_46\icu.obj bcb\libboost_regex-bcb-1_46\instances.obj bcb\libboost_regex-bcb-1_46\posix_api.obj bcb\libboost_regex-bcb-1_46\regex.obj bcb\libboost_regex-bcb-1_46\regex_debug.obj bcb\libboost_regex-bcb-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_46\static_mutex.obj bcb\libboost_regex-bcb-1_46\usinstances.obj bcb\libboost_regex-bcb-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-1_46\winstances.obj - if exist bcb\libboost_regex-bcb-1_46.lib del bcb\libboost_regex-bcb-1_46.lib +bcb\libboost_regex-bcb-1_47.lib : bcb\libboost_regex-bcb-1_47\c_regex_traits.obj bcb\libboost_regex-bcb-1_47\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_47\cregex.obj bcb\libboost_regex-bcb-1_47\fileiter.obj bcb\libboost_regex-bcb-1_47\icu.obj bcb\libboost_regex-bcb-1_47\instances.obj bcb\libboost_regex-bcb-1_47\posix_api.obj bcb\libboost_regex-bcb-1_47\regex.obj bcb\libboost_regex-bcb-1_47\regex_debug.obj bcb\libboost_regex-bcb-1_47\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_47\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_47\static_mutex.obj bcb\libboost_regex-bcb-1_47\usinstances.obj bcb\libboost_regex-bcb-1_47\w32_regex_traits.obj bcb\libboost_regex-bcb-1_47\wc_regex_traits.obj bcb\libboost_regex-bcb-1_47\wide_posix_api.obj bcb\libboost_regex-bcb-1_47\winstances.obj + if exist bcb\libboost_regex-bcb-1_47.lib del bcb\libboost_regex-bcb-1_47.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_46.lib" +"bcb\libboost_regex-bcb-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_46\cregex.obj" +"bcb\libboost_regex-bcb-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-1_46\icu.obj" +"bcb\libboost_regex-bcb-1_46\instances.obj" +"bcb\libboost_regex-bcb-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-1_46\regex.obj" +"bcb\libboost_regex-bcb-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_46\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_47.lib" +"bcb\libboost_regex-bcb-1_47\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_47\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_47\cregex.obj" +"bcb\libboost_regex-bcb-1_47\fileiter.obj" +"bcb\libboost_regex-bcb-1_47\icu.obj" +"bcb\libboost_regex-bcb-1_47\instances.obj" +"bcb\libboost_regex-bcb-1_47\posix_api.obj" +"bcb\libboost_regex-bcb-1_47\regex.obj" +"bcb\libboost_regex-bcb-1_47\regex_debug.obj" +"bcb\libboost_regex-bcb-1_47\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_47\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_47\static_mutex.obj" +"bcb\libboost_regex-bcb-1_47\usinstances.obj" +"bcb\libboost_regex-bcb-1_47\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_47\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_47\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_47\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-sd-1_46.lib +# section for libboost_regex-bcb-sd-1_47.lib # ######################################################## -bcb\libboost_regex-bcb-sd-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-sd-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-sd-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-sd-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-sd-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-sd-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-sd-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-sd-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-sd-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-sd-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-sd-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWM- -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-sd-1_47\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-sd-1_46 : - -@mkdir bcb\libboost_regex-bcb-sd-1_46 +bcb\libboost_regex-bcb-sd-1_47 : + -@mkdir bcb\libboost_regex-bcb-sd-1_47 -libboost_regex-bcb-sd-1_46_clean : - del bcb\libboost_regex-bcb-sd-1_46\*.obj - del bcb\libboost_regex-bcb-sd-1_46\*.il? - del bcb\libboost_regex-bcb-sd-1_46\*.csm - del bcb\libboost_regex-bcb-sd-1_46\*.tds +libboost_regex-bcb-sd-1_47_clean : + del bcb\libboost_regex-bcb-sd-1_47\*.obj + del bcb\libboost_regex-bcb-sd-1_47\*.il? + del bcb\libboost_regex-bcb-sd-1_47\*.csm + del bcb\libboost_regex-bcb-sd-1_47\*.tds -bcb\libboost_regex-bcb-sd-1_46.lib : bcb\libboost_regex-bcb-sd-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_46\cregex.obj bcb\libboost_regex-bcb-sd-1_46\fileiter.obj bcb\libboost_regex-bcb-sd-1_46\icu.obj bcb\libboost_regex-bcb-sd-1_46\instances.obj bcb\libboost_regex-bcb-sd-1_46\posix_api.obj bcb\libboost_regex-bcb-sd-1_46\regex.obj bcb\libboost_regex-bcb-sd-1_46\regex_debug.obj bcb\libboost_regex-bcb-sd-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_46\static_mutex.obj bcb\libboost_regex-bcb-sd-1_46\usinstances.obj bcb\libboost_regex-bcb-sd-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_46\winstances.obj - if exist bcb\libboost_regex-bcb-sd-1_46.lib del bcb\libboost_regex-bcb-sd-1_46.lib +bcb\libboost_regex-bcb-sd-1_47.lib : bcb\libboost_regex-bcb-sd-1_47\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_47\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_47\cregex.obj bcb\libboost_regex-bcb-sd-1_47\fileiter.obj bcb\libboost_regex-bcb-sd-1_47\icu.obj bcb\libboost_regex-bcb-sd-1_47\instances.obj bcb\libboost_regex-bcb-sd-1_47\posix_api.obj bcb\libboost_regex-bcb-sd-1_47\regex.obj bcb\libboost_regex-bcb-sd-1_47\regex_debug.obj bcb\libboost_regex-bcb-sd-1_47\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_47\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_47\static_mutex.obj bcb\libboost_regex-bcb-sd-1_47\usinstances.obj bcb\libboost_regex-bcb-sd-1_47\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_47\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_47\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_47\winstances.obj + if exist bcb\libboost_regex-bcb-sd-1_47.lib del bcb\libboost_regex-bcb-sd-1_47.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_46.lib" +"bcb\libboost_regex-bcb-sd-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_46\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_46\icu.obj" +"bcb\libboost_regex-bcb-sd-1_46\instances.obj" +"bcb\libboost_regex-bcb-sd-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_46\regex.obj" +"bcb\libboost_regex-bcb-sd-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_46\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_47.lib" +"bcb\libboost_regex-bcb-sd-1_47\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_47\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_47\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_47\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_47\icu.obj" +"bcb\libboost_regex-bcb-sd-1_47\instances.obj" +"bcb\libboost_regex-bcb-sd-1_47\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_47\regex.obj" +"bcb\libboost_regex-bcb-sd-1_47\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_47\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_47\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_47\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_47\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_47\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_47\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_47\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_47\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-sd-1_46.lib +# section for libboost_regex-bcb-mt-sd-1_47.lib # ######################################################## -bcb\libboost_regex-bcb-mt-sd-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWM -D_NO_VCL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-sd-1_47\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_46 : - -@mkdir bcb\libboost_regex-bcb-mt-sd-1_46 +bcb\libboost_regex-bcb-mt-sd-1_47 : + -@mkdir bcb\libboost_regex-bcb-mt-sd-1_47 -libboost_regex-bcb-mt-sd-1_46_clean : - del bcb\libboost_regex-bcb-mt-sd-1_46\*.obj - del bcb\libboost_regex-bcb-mt-sd-1_46\*.il? - del bcb\libboost_regex-bcb-mt-sd-1_46\*.csm - del bcb\libboost_regex-bcb-mt-sd-1_46\*.tds +libboost_regex-bcb-mt-sd-1_47_clean : + del bcb\libboost_regex-bcb-mt-sd-1_47\*.obj + del bcb\libboost_regex-bcb-mt-sd-1_47\*.il? + del bcb\libboost_regex-bcb-mt-sd-1_47\*.csm + del bcb\libboost_regex-bcb-mt-sd-1_47\*.tds -bcb\libboost_regex-bcb-mt-sd-1_46.lib : bcb\libboost_regex-bcb-mt-sd-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_46\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_46\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_46\icu.obj bcb\libboost_regex-bcb-mt-sd-1_46\instances.obj bcb\libboost_regex-bcb-mt-sd-1_46\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_46\regex.obj bcb\libboost_regex-bcb-mt-sd-1_46\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_46\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_46\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_46\winstances.obj - if exist bcb\libboost_regex-bcb-mt-sd-1_46.lib del bcb\libboost_regex-bcb-mt-sd-1_46.lib +bcb\libboost_regex-bcb-mt-sd-1_47.lib : bcb\libboost_regex-bcb-mt-sd-1_47\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_47\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_47\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_47\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_47\icu.obj bcb\libboost_regex-bcb-mt-sd-1_47\instances.obj bcb\libboost_regex-bcb-mt-sd-1_47\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_47\regex.obj bcb\libboost_regex-bcb-mt-sd-1_47\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_47\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_47\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_47\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_47\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_47\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_47\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_47\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_47\winstances.obj + if exist bcb\libboost_regex-bcb-mt-sd-1_47.lib del bcb\libboost_regex-bcb-mt-sd-1_47.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_46.lib" +"bcb\libboost_regex-bcb-mt-sd-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_46\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_47.lib" +"bcb\libboost_regex-bcb-mt-sd-1_47\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_47\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-d-1_46.lib +# section for boost_regex-bcb-mt-d-1_47.lib # ######################################################## -bcb\boost_regex-bcb-mt-d-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-d-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-d-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-d-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-d-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-d-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-d-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-d-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-d-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-mt-d-1_47\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-d-1_46 : - -@mkdir bcb\boost_regex-bcb-mt-d-1_46 +bcb\boost_regex-bcb-mt-d-1_47 : + -@mkdir bcb\boost_regex-bcb-mt-d-1_47 -boost_regex-bcb-mt-d-1_46_clean : - del bcb\boost_regex-bcb-mt-d-1_46\*.obj - del bcb\boost_regex-bcb-mt-d-1_46\*.il? - del bcb\boost_regex-bcb-mt-d-1_46\*.csm - del bcb\boost_regex-bcb-mt-d-1_46\*.tds +boost_regex-bcb-mt-d-1_47_clean : + del bcb\boost_regex-bcb-mt-d-1_47\*.obj + del bcb\boost_regex-bcb-mt-d-1_47\*.il? + del bcb\boost_regex-bcb-mt-d-1_47\*.csm + del bcb\boost_regex-bcb-mt-d-1_47\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-d-1_46.lib : bcb\boost_regex-bcb-mt-d-1_46\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\cregex.obj bcb\boost_regex-bcb-mt-d-1_46\fileiter.obj bcb\boost_regex-bcb-mt-d-1_46\icu.obj bcb\boost_regex-bcb-mt-d-1_46\instances.obj bcb\boost_regex-bcb-mt-d-1_46\posix_api.obj bcb\boost_regex-bcb-mt-d-1_46\regex.obj bcb\boost_regex-bcb-mt-d-1_46\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_46\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_46\usinstances.obj bcb\boost_regex-bcb-mt-d-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_46\winstances.obj +bcb\boost_regex-bcb-mt-d-1_47.lib : bcb\boost_regex-bcb-mt-d-1_47\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_47\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_47\cregex.obj bcb\boost_regex-bcb-mt-d-1_47\fileiter.obj bcb\boost_regex-bcb-mt-d-1_47\icu.obj bcb\boost_regex-bcb-mt-d-1_47\instances.obj bcb\boost_regex-bcb-mt-d-1_47\posix_api.obj bcb\boost_regex-bcb-mt-d-1_47\regex.obj bcb\boost_regex-bcb-mt-d-1_47\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_47\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_47\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_47\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_47\usinstances.obj bcb\boost_regex-bcb-mt-d-1_47\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_47\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_47\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_47\winstances.obj bcc32 @&&| --lw-dup -lw-dpl -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-mt-d-1_46.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_46\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\cregex.obj bcb\boost_regex-bcb-mt-d-1_46\fileiter.obj bcb\boost_regex-bcb-mt-d-1_46\icu.obj bcb\boost_regex-bcb-mt-d-1_46\instances.obj bcb\boost_regex-bcb-mt-d-1_46\posix_api.obj bcb\boost_regex-bcb-mt-d-1_46\regex.obj bcb\boost_regex-bcb-mt-d-1_46\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_46\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_46\usinstances.obj bcb\boost_regex-bcb-mt-d-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_46\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_46\winstances.obj $(LIBS) +-lw-dup -lw-dpl -tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-mt-d-1_47.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_47\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_47\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_47\cregex.obj bcb\boost_regex-bcb-mt-d-1_47\fileiter.obj bcb\boost_regex-bcb-mt-d-1_47\icu.obj bcb\boost_regex-bcb-mt-d-1_47\instances.obj bcb\boost_regex-bcb-mt-d-1_47\posix_api.obj bcb\boost_regex-bcb-mt-d-1_47\regex.obj bcb\boost_regex-bcb-mt-d-1_47\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_47\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_47\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_47\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_47\usinstances.obj bcb\boost_regex-bcb-mt-d-1_47\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_47\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_47\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_47\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-d-1_46.lib bcb\boost_regex-bcb-mt-d-1_46.dll + implib -w bcb\boost_regex-bcb-mt-d-1_47.lib bcb\boost_regex-bcb-mt-d-1_47.dll ######################################################## # -# section for boost_regex-bcb-d-1_46.lib +# section for boost_regex-bcb-d-1_47.lib # ######################################################## -bcb\boost_regex-bcb-d-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-d-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-d-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-d-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-d-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-d-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-d-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-d-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-d-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-d-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-d-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-d-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-d-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -DBOOST_REGEX_DYN_LINK -obcb\boost_regex-bcb-d-1_47\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-d-1_46 : - -@mkdir bcb\boost_regex-bcb-d-1_46 +bcb\boost_regex-bcb-d-1_47 : + -@mkdir bcb\boost_regex-bcb-d-1_47 -boost_regex-bcb-d-1_46_clean : - del bcb\boost_regex-bcb-d-1_46\*.obj - del bcb\boost_regex-bcb-d-1_46\*.il? - del bcb\boost_regex-bcb-d-1_46\*.csm - del bcb\boost_regex-bcb-d-1_46\*.tds +boost_regex-bcb-d-1_47_clean : + del bcb\boost_regex-bcb-d-1_47\*.obj + del bcb\boost_regex-bcb-d-1_47\*.il? + del bcb\boost_regex-bcb-d-1_47\*.csm + del bcb\boost_regex-bcb-d-1_47\*.tds del bcb\*.tds -bcb\boost_regex-bcb-d-1_46.lib : bcb\boost_regex-bcb-d-1_46\c_regex_traits.obj bcb\boost_regex-bcb-d-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_46\cregex.obj bcb\boost_regex-bcb-d-1_46\fileiter.obj bcb\boost_regex-bcb-d-1_46\icu.obj bcb\boost_regex-bcb-d-1_46\instances.obj bcb\boost_regex-bcb-d-1_46\posix_api.obj bcb\boost_regex-bcb-d-1_46\regex.obj bcb\boost_regex-bcb-d-1_46\regex_debug.obj bcb\boost_regex-bcb-d-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_46\static_mutex.obj bcb\boost_regex-bcb-d-1_46\usinstances.obj bcb\boost_regex-bcb-d-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_46\wide_posix_api.obj bcb\boost_regex-bcb-d-1_46\winstances.obj +bcb\boost_regex-bcb-d-1_47.lib : bcb\boost_regex-bcb-d-1_47\c_regex_traits.obj bcb\boost_regex-bcb-d-1_47\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_47\cregex.obj bcb\boost_regex-bcb-d-1_47\fileiter.obj bcb\boost_regex-bcb-d-1_47\icu.obj bcb\boost_regex-bcb-d-1_47\instances.obj bcb\boost_regex-bcb-d-1_47\posix_api.obj bcb\boost_regex-bcb-d-1_47\regex.obj bcb\boost_regex-bcb-d-1_47\regex_debug.obj bcb\boost_regex-bcb-d-1_47\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_47\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_47\static_mutex.obj bcb\boost_regex-bcb-d-1_47\usinstances.obj bcb\boost_regex-bcb-d-1_47\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_47\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_47\wide_posix_api.obj bcb\boost_regex-bcb-d-1_47\winstances.obj bcc32 @&&| --lw-dup -lw-dpl -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-d-1_46.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_46\c_regex_traits.obj bcb\boost_regex-bcb-d-1_46\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_46\cregex.obj bcb\boost_regex-bcb-d-1_46\fileiter.obj bcb\boost_regex-bcb-d-1_46\icu.obj bcb\boost_regex-bcb-d-1_46\instances.obj bcb\boost_regex-bcb-d-1_46\posix_api.obj bcb\boost_regex-bcb-d-1_46\regex.obj bcb\boost_regex-bcb-d-1_46\regex_debug.obj bcb\boost_regex-bcb-d-1_46\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_46\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_46\static_mutex.obj bcb\boost_regex-bcb-d-1_46\usinstances.obj bcb\boost_regex-bcb-d-1_46\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_46\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_46\wide_posix_api.obj bcb\boost_regex-bcb-d-1_46\winstances.obj $(LIBS) +-lw-dup -lw-dpl -tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; -ebcb\boost_regex-bcb-d-1_47.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_47\c_regex_traits.obj bcb\boost_regex-bcb-d-1_47\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_47\cregex.obj bcb\boost_regex-bcb-d-1_47\fileiter.obj bcb\boost_regex-bcb-d-1_47\icu.obj bcb\boost_regex-bcb-d-1_47\instances.obj bcb\boost_regex-bcb-d-1_47\posix_api.obj bcb\boost_regex-bcb-d-1_47\regex.obj bcb\boost_regex-bcb-d-1_47\regex_debug.obj bcb\boost_regex-bcb-d-1_47\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_47\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_47\static_mutex.obj bcb\boost_regex-bcb-d-1_47\usinstances.obj bcb\boost_regex-bcb-d-1_47\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_47\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_47\wide_posix_api.obj bcb\boost_regex-bcb-d-1_47\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-d-1_46.lib bcb\boost_regex-bcb-d-1_46.dll + implib -w bcb\boost_regex-bcb-d-1_47.lib bcb\boost_regex-bcb-d-1_47.dll ######################################################## # -# section for libboost_regex-bcb-mt-d-1_46.lib +# section for libboost_regex-bcb-mt-d-1_47.lib # ######################################################## -bcb\libboost_regex-bcb-mt-d-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWM -tWR -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-mt-d-1_47\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_46 : - -@mkdir bcb\libboost_regex-bcb-mt-d-1_46 +bcb\libboost_regex-bcb-mt-d-1_47 : + -@mkdir bcb\libboost_regex-bcb-mt-d-1_47 -libboost_regex-bcb-mt-d-1_46_clean : - del bcb\libboost_regex-bcb-mt-d-1_46\*.obj - del bcb\libboost_regex-bcb-mt-d-1_46\*.il? - del bcb\libboost_regex-bcb-mt-d-1_46\*.csm - del bcb\libboost_regex-bcb-mt-d-1_46\*.tds +libboost_regex-bcb-mt-d-1_47_clean : + del bcb\libboost_regex-bcb-mt-d-1_47\*.obj + del bcb\libboost_regex-bcb-mt-d-1_47\*.il? + del bcb\libboost_regex-bcb-mt-d-1_47\*.csm + del bcb\libboost_regex-bcb-mt-d-1_47\*.tds -bcb\libboost_regex-bcb-mt-d-1_46.lib : bcb\libboost_regex-bcb-mt-d-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_46\cregex.obj bcb\libboost_regex-bcb-mt-d-1_46\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_46\icu.obj bcb\libboost_regex-bcb-mt-d-1_46\instances.obj bcb\libboost_regex-bcb-mt-d-1_46\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_46\regex.obj bcb\libboost_regex-bcb-mt-d-1_46\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_46\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_46\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_46\winstances.obj - if exist bcb\libboost_regex-bcb-mt-d-1_46.lib del bcb\libboost_regex-bcb-mt-d-1_46.lib +bcb\libboost_regex-bcb-mt-d-1_47.lib : bcb\libboost_regex-bcb-mt-d-1_47\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_47\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_47\cregex.obj bcb\libboost_regex-bcb-mt-d-1_47\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_47\icu.obj bcb\libboost_regex-bcb-mt-d-1_47\instances.obj bcb\libboost_regex-bcb-mt-d-1_47\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_47\regex.obj bcb\libboost_regex-bcb-mt-d-1_47\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_47\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_47\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_47\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_47\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_47\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_47\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_47\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_47\winstances.obj + if exist bcb\libboost_regex-bcb-mt-d-1_47.lib del bcb\libboost_regex-bcb-mt-d-1_47.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_46.lib" +"bcb\libboost_regex-bcb-mt-d-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_46\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_47.lib" +"bcb\libboost_regex-bcb-mt-d-1_47\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_47\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-d-1_46.lib +# section for libboost_regex-bcb-d-1_47.lib # ######################################################## -bcb\libboost_regex-bcb-d-1_46\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\c_regex_traits.obj ../src/c_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_46\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_46\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\cregex.obj ../src/cregex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-d-1_46\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\fileiter.obj ../src/fileiter.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-d-1_46\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\icu.obj: ../src/icu.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\icu.obj ../src/icu.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-d-1_46\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\instances.obj: ../src/instances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\instances.obj ../src/instances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-d-1_46\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\posix_api.obj ../src/posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-d-1_46\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\regex.obj: ../src/regex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\regex.obj ../src/regex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-d-1_46\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\regex_debug.obj ../src/regex_debug.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-d-1_46\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-d-1_46\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-d-1_46\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\static_mutex.obj ../src/static_mutex.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-d-1_46\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\usinstances.obj ../src/usinstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-d-1_46\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\w32_regex_traits.obj ../src/w32_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_46\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\wc_regex_traits.obj ../src/wc_regex_traits.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_46\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\wide_posix_api.obj ../src/wide_posix_api.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-d-1_46\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_47\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) bcc32 @&&| --c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_46\winstances.obj ../src/winstances.cpp +-c $(INCLUDES) -tWD -tWR -tWM- -DBOOST_REGEX_STATIC_LINK -D_NO_VCL -D_RTLDLL -v -Ve -Vx -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I$(BCROOT)\include;../../../ -L$(BCROOT)\lib;$(BCROOT)\lib\release; $(CXXFLAGS) -obcb\libboost_regex-bcb-d-1_47\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-d-1_46 : - -@mkdir bcb\libboost_regex-bcb-d-1_46 +bcb\libboost_regex-bcb-d-1_47 : + -@mkdir bcb\libboost_regex-bcb-d-1_47 -libboost_regex-bcb-d-1_46_clean : - del bcb\libboost_regex-bcb-d-1_46\*.obj - del bcb\libboost_regex-bcb-d-1_46\*.il? - del bcb\libboost_regex-bcb-d-1_46\*.csm - del bcb\libboost_regex-bcb-d-1_46\*.tds +libboost_regex-bcb-d-1_47_clean : + del bcb\libboost_regex-bcb-d-1_47\*.obj + del bcb\libboost_regex-bcb-d-1_47\*.il? + del bcb\libboost_regex-bcb-d-1_47\*.csm + del bcb\libboost_regex-bcb-d-1_47\*.tds -bcb\libboost_regex-bcb-d-1_46.lib : bcb\libboost_regex-bcb-d-1_46\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_46\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_46\cregex.obj bcb\libboost_regex-bcb-d-1_46\fileiter.obj bcb\libboost_regex-bcb-d-1_46\icu.obj bcb\libboost_regex-bcb-d-1_46\instances.obj bcb\libboost_regex-bcb-d-1_46\posix_api.obj bcb\libboost_regex-bcb-d-1_46\regex.obj bcb\libboost_regex-bcb-d-1_46\regex_debug.obj bcb\libboost_regex-bcb-d-1_46\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_46\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_46\static_mutex.obj bcb\libboost_regex-bcb-d-1_46\usinstances.obj bcb\libboost_regex-bcb-d-1_46\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_46\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_46\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_46\winstances.obj - if exist bcb\libboost_regex-bcb-d-1_46.lib del bcb\libboost_regex-bcb-d-1_46.lib +bcb\libboost_regex-bcb-d-1_47.lib : bcb\libboost_regex-bcb-d-1_47\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_47\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_47\cregex.obj bcb\libboost_regex-bcb-d-1_47\fileiter.obj bcb\libboost_regex-bcb-d-1_47\icu.obj bcb\libboost_regex-bcb-d-1_47\instances.obj bcb\libboost_regex-bcb-d-1_47\posix_api.obj bcb\libboost_regex-bcb-d-1_47\regex.obj bcb\libboost_regex-bcb-d-1_47\regex_debug.obj bcb\libboost_regex-bcb-d-1_47\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_47\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_47\static_mutex.obj bcb\libboost_regex-bcb-d-1_47\usinstances.obj bcb\libboost_regex-bcb-d-1_47\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_47\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_47\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_47\winstances.obj + if exist bcb\libboost_regex-bcb-d-1_47.lib del bcb\libboost_regex-bcb-d-1_47.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_46.lib" +"bcb\libboost_regex-bcb-d-1_46\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_46\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_46\cregex.obj" +"bcb\libboost_regex-bcb-d-1_46\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_46\icu.obj" +"bcb\libboost_regex-bcb-d-1_46\instances.obj" +"bcb\libboost_regex-bcb-d-1_46\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_46\regex.obj" +"bcb\libboost_regex-bcb-d-1_46\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_46\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_46\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_46\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_46\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_46\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_46\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_46\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_46\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_47.lib" +"bcb\libboost_regex-bcb-d-1_47\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_47\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_47\cregex.obj" +"bcb\libboost_regex-bcb-d-1_47\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_47\icu.obj" +"bcb\libboost_regex-bcb-d-1_47\instances.obj" +"bcb\libboost_regex-bcb-d-1_47\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_47\regex.obj" +"bcb\libboost_regex-bcb-d-1_47\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_47\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_47\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_47\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_47\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_47\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_47\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_47\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_47\winstances.obj" | diff --git a/build/gcc-shared.mak b/build/gcc-shared.mak index 504846f7..2806967b 100644 --- a/build/gcc-shared.mak +++ b/build/gcc-shared.mak @@ -47,12 +47,12 @@ endif ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : gcc gcc gcc/boost_regex-gcc-1_46_shared ./gcc/libboost_regex-gcc-1_46.so gcc gcc/boost_regex-gcc-d-1_46_shared ./gcc/libboost_regex-gcc-d-1_46.so +all : gcc gcc gcc/boost_regex-gcc-1_47_shared ./gcc/libboost_regex-gcc-1_47.so gcc gcc/boost_regex-gcc-d-1_47_shared ./gcc/libboost_regex-gcc-d-1_47.so gcc : mkdir -p gcc -clean : boost_regex-gcc-1_46_clean boost_regex-gcc-d-1_46_clean +clean : boost_regex-gcc-1_47_clean boost_regex-gcc-d-1_47_clean install : all @@ -60,131 +60,131 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_46.a +# section for libboost_regex-gcc-1_47.a # ######################################################## -gcc/boost_regex-gcc-1_46_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_47_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_46_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_47_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_46_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_47_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_46_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_47_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_46_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_47_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_46_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_47_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_46_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_47_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_46_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_47_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_46_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_47_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_46_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_47_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_46_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_47_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_46_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_47_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_46_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_47_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_46_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_47_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_46_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_47_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_46_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_47_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_46_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_47_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_46_shared : - mkdir -p gcc/boost_regex-gcc-1_46_shared +gcc/boost_regex-gcc-1_47_shared : + mkdir -p gcc/boost_regex-gcc-1_47_shared -boost_regex-gcc-1_46_clean : - rm -f gcc/boost_regex-gcc-1_46_shared/*.o +boost_regex-gcc-1_47_clean : + rm -f gcc/boost_regex-gcc-1_47_shared/*.o -./gcc/libboost_regex-gcc-1_46.so : gcc/boost_regex-gcc-1_46_shared/c_regex_traits.o gcc/boost_regex-gcc-1_46_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_46_shared/cregex.o gcc/boost_regex-gcc-1_46_shared/fileiter.o gcc/boost_regex-gcc-1_46_shared/icu.o gcc/boost_regex-gcc-1_46_shared/instances.o gcc/boost_regex-gcc-1_46_shared/posix_api.o gcc/boost_regex-gcc-1_46_shared/regex.o gcc/boost_regex-gcc-1_46_shared/regex_debug.o gcc/boost_regex-gcc-1_46_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_46_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_46_shared/static_mutex.o gcc/boost_regex-gcc-1_46_shared/usinstances.o gcc/boost_regex-gcc-1_46_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_46_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_46_shared/wide_posix_api.o gcc/boost_regex-gcc-1_46_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-1_46.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_46_shared/c_regex_traits.o gcc/boost_regex-gcc-1_46_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_46_shared/cregex.o gcc/boost_regex-gcc-1_46_shared/fileiter.o gcc/boost_regex-gcc-1_46_shared/icu.o gcc/boost_regex-gcc-1_46_shared/instances.o gcc/boost_regex-gcc-1_46_shared/posix_api.o gcc/boost_regex-gcc-1_46_shared/regex.o gcc/boost_regex-gcc-1_46_shared/regex_debug.o gcc/boost_regex-gcc-1_46_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_46_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_46_shared/static_mutex.o gcc/boost_regex-gcc-1_46_shared/usinstances.o gcc/boost_regex-gcc-1_46_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_46_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_46_shared/wide_posix_api.o gcc/boost_regex-gcc-1_46_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-1_47.so : gcc/boost_regex-gcc-1_47_shared/c_regex_traits.o gcc/boost_regex-gcc-1_47_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_47_shared/cregex.o gcc/boost_regex-gcc-1_47_shared/fileiter.o gcc/boost_regex-gcc-1_47_shared/icu.o gcc/boost_regex-gcc-1_47_shared/instances.o gcc/boost_regex-gcc-1_47_shared/posix_api.o gcc/boost_regex-gcc-1_47_shared/regex.o gcc/boost_regex-gcc-1_47_shared/regex_debug.o gcc/boost_regex-gcc-1_47_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_47_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_47_shared/static_mutex.o gcc/boost_regex-gcc-1_47_shared/usinstances.o gcc/boost_regex-gcc-1_47_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_47_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_47_shared/wide_posix_api.o gcc/boost_regex-gcc-1_47_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-1_47.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_47_shared/c_regex_traits.o gcc/boost_regex-gcc-1_47_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_47_shared/cregex.o gcc/boost_regex-gcc-1_47_shared/fileiter.o gcc/boost_regex-gcc-1_47_shared/icu.o gcc/boost_regex-gcc-1_47_shared/instances.o gcc/boost_regex-gcc-1_47_shared/posix_api.o gcc/boost_regex-gcc-1_47_shared/regex.o gcc/boost_regex-gcc-1_47_shared/regex_debug.o gcc/boost_regex-gcc-1_47_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_47_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_47_shared/static_mutex.o gcc/boost_regex-gcc-1_47_shared/usinstances.o gcc/boost_regex-gcc-1_47_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_47_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_47_shared/wide_posix_api.o gcc/boost_regex-gcc-1_47_shared/winstances.o $(ICU_LIBS) $(LIBS) ######################################################## # -# section for libboost_regex-gcc-d-1_46.a +# section for libboost_regex-gcc-d-1_47.a # ######################################################## -gcc/boost_regex-gcc-d-1_46_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_47_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_46_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_47_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_46_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_47_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_46_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_47_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_46_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_47_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_46_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_47_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_46_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_47_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_46_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_47_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_46_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_47_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_46_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_47_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_46_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_47_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_46_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_47_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_46_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_47_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_46_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_47_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_46_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_47_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_46_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_47_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_46_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_47_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_46_shared : - mkdir -p gcc/boost_regex-gcc-d-1_46_shared +gcc/boost_regex-gcc-d-1_47_shared : + mkdir -p gcc/boost_regex-gcc-d-1_47_shared -boost_regex-gcc-d-1_46_clean : - rm -f gcc/boost_regex-gcc-d-1_46_shared/*.o +boost_regex-gcc-d-1_47_clean : + rm -f gcc/boost_regex-gcc-d-1_47_shared/*.o -./gcc/libboost_regex-gcc-d-1_46.so : gcc/boost_regex-gcc-d-1_46_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/cregex.o gcc/boost_regex-gcc-d-1_46_shared/fileiter.o gcc/boost_regex-gcc-d-1_46_shared/icu.o gcc/boost_regex-gcc-d-1_46_shared/instances.o gcc/boost_regex-gcc-d-1_46_shared/posix_api.o gcc/boost_regex-gcc-d-1_46_shared/regex.o gcc/boost_regex-gcc-d-1_46_shared/regex_debug.o gcc/boost_regex-gcc-d-1_46_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_46_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_46_shared/static_mutex.o gcc/boost_regex-gcc-d-1_46_shared/usinstances.o gcc/boost_regex-gcc-d-1_46_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_46_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-d-1_46.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_46_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/cregex.o gcc/boost_regex-gcc-d-1_46_shared/fileiter.o gcc/boost_regex-gcc-d-1_46_shared/icu.o gcc/boost_regex-gcc-d-1_46_shared/instances.o gcc/boost_regex-gcc-d-1_46_shared/posix_api.o gcc/boost_regex-gcc-d-1_46_shared/regex.o gcc/boost_regex-gcc-d-1_46_shared/regex_debug.o gcc/boost_regex-gcc-d-1_46_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_46_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_46_shared/static_mutex.o gcc/boost_regex-gcc-d-1_46_shared/usinstances.o gcc/boost_regex-gcc-d-1_46_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_46_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_46_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-d-1_47.so : gcc/boost_regex-gcc-d-1_47_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_47_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_47_shared/cregex.o gcc/boost_regex-gcc-d-1_47_shared/fileiter.o gcc/boost_regex-gcc-d-1_47_shared/icu.o gcc/boost_regex-gcc-d-1_47_shared/instances.o gcc/boost_regex-gcc-d-1_47_shared/posix_api.o gcc/boost_regex-gcc-d-1_47_shared/regex.o gcc/boost_regex-gcc-d-1_47_shared/regex_debug.o gcc/boost_regex-gcc-d-1_47_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_47_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_47_shared/static_mutex.o gcc/boost_regex-gcc-d-1_47_shared/usinstances.o gcc/boost_regex-gcc-d-1_47_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_47_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_47_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_47_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-d-1_47.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_47_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_47_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_47_shared/cregex.o gcc/boost_regex-gcc-d-1_47_shared/fileiter.o gcc/boost_regex-gcc-d-1_47_shared/icu.o gcc/boost_regex-gcc-d-1_47_shared/instances.o gcc/boost_regex-gcc-d-1_47_shared/posix_api.o gcc/boost_regex-gcc-d-1_47_shared/regex.o gcc/boost_regex-gcc-d-1_47_shared/regex_debug.o gcc/boost_regex-gcc-d-1_47_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_47_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_47_shared/static_mutex.o gcc/boost_regex-gcc-d-1_47_shared/usinstances.o gcc/boost_regex-gcc-d-1_47_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_47_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_47_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_47_shared/winstances.o $(ICU_LIBS) $(LIBS) diff --git a/build/gcc.mak b/build/gcc.mak index f378b855..fdca3238 100644 --- a/build/gcc.mak +++ b/build/gcc.mak @@ -47,12 +47,12 @@ endif ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : gcc gcc gcc/boost_regex-gcc-1_46 ./gcc/libboost_regex-gcc-1_46.a gcc gcc/boost_regex-gcc-d-1_46 ./gcc/libboost_regex-gcc-d-1_46.a +all : gcc gcc gcc/boost_regex-gcc-1_47 ./gcc/libboost_regex-gcc-1_47.a gcc gcc/boost_regex-gcc-d-1_47 ./gcc/libboost_regex-gcc-d-1_47.a gcc : mkdir -p gcc -clean : boost_regex-gcc-1_46_clean boost_regex-gcc-d-1_46_clean +clean : boost_regex-gcc-1_47_clean boost_regex-gcc-d-1_47_clean install : all @@ -60,133 +60,133 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_46.a +# section for libboost_regex-gcc-1_47.a # ######################################################## -gcc/boost_regex-gcc-1_46/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_47/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_46/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_47/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_46/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_47/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_46/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_47/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_46/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_47/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_46/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_47/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_46/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_47/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_46/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_47/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_46/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_47/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_46/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_47/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_46/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_47/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_46/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_47/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_46/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_47/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_46/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_47/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_46/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_47/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_46/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_47/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_46/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_46/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_47/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_47/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_46 : - mkdir -p gcc/boost_regex-gcc-1_46 +gcc/boost_regex-gcc-1_47 : + mkdir -p gcc/boost_regex-gcc-1_47 -boost_regex-gcc-1_46_clean : - rm -f gcc/boost_regex-gcc-1_46/*.o +boost_regex-gcc-1_47_clean : + rm -f gcc/boost_regex-gcc-1_47/*.o -./gcc/libboost_regex-gcc-1_46.a : gcc/boost_regex-gcc-1_46/c_regex_traits.o gcc/boost_regex-gcc-1_46/cpp_regex_traits.o gcc/boost_regex-gcc-1_46/cregex.o gcc/boost_regex-gcc-1_46/fileiter.o gcc/boost_regex-gcc-1_46/icu.o gcc/boost_regex-gcc-1_46/instances.o gcc/boost_regex-gcc-1_46/posix_api.o gcc/boost_regex-gcc-1_46/regex.o gcc/boost_regex-gcc-1_46/regex_debug.o gcc/boost_regex-gcc-1_46/regex_raw_buffer.o gcc/boost_regex-gcc-1_46/regex_traits_defaults.o gcc/boost_regex-gcc-1_46/static_mutex.o gcc/boost_regex-gcc-1_46/usinstances.o gcc/boost_regex-gcc-1_46/w32_regex_traits.o gcc/boost_regex-gcc-1_46/wc_regex_traits.o gcc/boost_regex-gcc-1_46/wide_posix_api.o gcc/boost_regex-gcc-1_46/winstances.o - ar -r gcc/libboost_regex-gcc-1_46.a gcc/boost_regex-gcc-1_46/c_regex_traits.o gcc/boost_regex-gcc-1_46/cpp_regex_traits.o gcc/boost_regex-gcc-1_46/cregex.o gcc/boost_regex-gcc-1_46/fileiter.o gcc/boost_regex-gcc-1_46/icu.o gcc/boost_regex-gcc-1_46/instances.o gcc/boost_regex-gcc-1_46/posix_api.o gcc/boost_regex-gcc-1_46/regex.o gcc/boost_regex-gcc-1_46/regex_debug.o gcc/boost_regex-gcc-1_46/regex_raw_buffer.o gcc/boost_regex-gcc-1_46/regex_traits_defaults.o gcc/boost_regex-gcc-1_46/static_mutex.o gcc/boost_regex-gcc-1_46/usinstances.o gcc/boost_regex-gcc-1_46/w32_regex_traits.o gcc/boost_regex-gcc-1_46/wc_regex_traits.o gcc/boost_regex-gcc-1_46/wide_posix_api.o gcc/boost_regex-gcc-1_46/winstances.o - -ar -s gcc/libboost_regex-gcc-1_46.a +./gcc/libboost_regex-gcc-1_47.a : gcc/boost_regex-gcc-1_47/c_regex_traits.o gcc/boost_regex-gcc-1_47/cpp_regex_traits.o gcc/boost_regex-gcc-1_47/cregex.o gcc/boost_regex-gcc-1_47/fileiter.o gcc/boost_regex-gcc-1_47/icu.o gcc/boost_regex-gcc-1_47/instances.o gcc/boost_regex-gcc-1_47/posix_api.o gcc/boost_regex-gcc-1_47/regex.o gcc/boost_regex-gcc-1_47/regex_debug.o gcc/boost_regex-gcc-1_47/regex_raw_buffer.o gcc/boost_regex-gcc-1_47/regex_traits_defaults.o gcc/boost_regex-gcc-1_47/static_mutex.o gcc/boost_regex-gcc-1_47/usinstances.o gcc/boost_regex-gcc-1_47/w32_regex_traits.o gcc/boost_regex-gcc-1_47/wc_regex_traits.o gcc/boost_regex-gcc-1_47/wide_posix_api.o gcc/boost_regex-gcc-1_47/winstances.o + ar -r gcc/libboost_regex-gcc-1_47.a gcc/boost_regex-gcc-1_47/c_regex_traits.o gcc/boost_regex-gcc-1_47/cpp_regex_traits.o gcc/boost_regex-gcc-1_47/cregex.o gcc/boost_regex-gcc-1_47/fileiter.o gcc/boost_regex-gcc-1_47/icu.o gcc/boost_regex-gcc-1_47/instances.o gcc/boost_regex-gcc-1_47/posix_api.o gcc/boost_regex-gcc-1_47/regex.o gcc/boost_regex-gcc-1_47/regex_debug.o gcc/boost_regex-gcc-1_47/regex_raw_buffer.o gcc/boost_regex-gcc-1_47/regex_traits_defaults.o gcc/boost_regex-gcc-1_47/static_mutex.o gcc/boost_regex-gcc-1_47/usinstances.o gcc/boost_regex-gcc-1_47/w32_regex_traits.o gcc/boost_regex-gcc-1_47/wc_regex_traits.o gcc/boost_regex-gcc-1_47/wide_posix_api.o gcc/boost_regex-gcc-1_47/winstances.o + -ar -s gcc/libboost_regex-gcc-1_47.a ######################################################## # -# section for libboost_regex-gcc-d-1_46.a +# section for libboost_regex-gcc-d-1_47.a # ######################################################## -gcc/boost_regex-gcc-d-1_46/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_47/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_46/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_47/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_46/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_47/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_46/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_47/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_46/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_47/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_46/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_47/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_46/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_47/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_46/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_47/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_46/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_47/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_46/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_47/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_46/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_47/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_46/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_47/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_46/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_47/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_46/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_47/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_46/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_47/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_46/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_47/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_46/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_46/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_47/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_47/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_46 : - mkdir -p gcc/boost_regex-gcc-d-1_46 +gcc/boost_regex-gcc-d-1_47 : + mkdir -p gcc/boost_regex-gcc-d-1_47 -boost_regex-gcc-d-1_46_clean : - rm -f gcc/boost_regex-gcc-d-1_46/*.o +boost_regex-gcc-d-1_47_clean : + rm -f gcc/boost_regex-gcc-d-1_47/*.o -./gcc/libboost_regex-gcc-d-1_46.a : gcc/boost_regex-gcc-d-1_46/c_regex_traits.o gcc/boost_regex-gcc-d-1_46/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_46/cregex.o gcc/boost_regex-gcc-d-1_46/fileiter.o gcc/boost_regex-gcc-d-1_46/icu.o gcc/boost_regex-gcc-d-1_46/instances.o gcc/boost_regex-gcc-d-1_46/posix_api.o gcc/boost_regex-gcc-d-1_46/regex.o gcc/boost_regex-gcc-d-1_46/regex_debug.o gcc/boost_regex-gcc-d-1_46/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_46/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_46/static_mutex.o gcc/boost_regex-gcc-d-1_46/usinstances.o gcc/boost_regex-gcc-d-1_46/w32_regex_traits.o gcc/boost_regex-gcc-d-1_46/wc_regex_traits.o gcc/boost_regex-gcc-d-1_46/wide_posix_api.o gcc/boost_regex-gcc-d-1_46/winstances.o - ar -r gcc/libboost_regex-gcc-d-1_46.a gcc/boost_regex-gcc-d-1_46/c_regex_traits.o gcc/boost_regex-gcc-d-1_46/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_46/cregex.o gcc/boost_regex-gcc-d-1_46/fileiter.o gcc/boost_regex-gcc-d-1_46/icu.o gcc/boost_regex-gcc-d-1_46/instances.o gcc/boost_regex-gcc-d-1_46/posix_api.o gcc/boost_regex-gcc-d-1_46/regex.o gcc/boost_regex-gcc-d-1_46/regex_debug.o gcc/boost_regex-gcc-d-1_46/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_46/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_46/static_mutex.o gcc/boost_regex-gcc-d-1_46/usinstances.o gcc/boost_regex-gcc-d-1_46/w32_regex_traits.o gcc/boost_regex-gcc-d-1_46/wc_regex_traits.o gcc/boost_regex-gcc-d-1_46/wide_posix_api.o gcc/boost_regex-gcc-d-1_46/winstances.o - -ar -s gcc/libboost_regex-gcc-d-1_46.a +./gcc/libboost_regex-gcc-d-1_47.a : gcc/boost_regex-gcc-d-1_47/c_regex_traits.o gcc/boost_regex-gcc-d-1_47/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_47/cregex.o gcc/boost_regex-gcc-d-1_47/fileiter.o gcc/boost_regex-gcc-d-1_47/icu.o gcc/boost_regex-gcc-d-1_47/instances.o gcc/boost_regex-gcc-d-1_47/posix_api.o gcc/boost_regex-gcc-d-1_47/regex.o gcc/boost_regex-gcc-d-1_47/regex_debug.o gcc/boost_regex-gcc-d-1_47/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_47/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_47/static_mutex.o gcc/boost_regex-gcc-d-1_47/usinstances.o gcc/boost_regex-gcc-d-1_47/w32_regex_traits.o gcc/boost_regex-gcc-d-1_47/wc_regex_traits.o gcc/boost_regex-gcc-d-1_47/wide_posix_api.o gcc/boost_regex-gcc-d-1_47/winstances.o + ar -r gcc/libboost_regex-gcc-d-1_47.a gcc/boost_regex-gcc-d-1_47/c_regex_traits.o gcc/boost_regex-gcc-d-1_47/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_47/cregex.o gcc/boost_regex-gcc-d-1_47/fileiter.o gcc/boost_regex-gcc-d-1_47/icu.o gcc/boost_regex-gcc-d-1_47/instances.o gcc/boost_regex-gcc-d-1_47/posix_api.o gcc/boost_regex-gcc-d-1_47/regex.o gcc/boost_regex-gcc-d-1_47/regex_debug.o gcc/boost_regex-gcc-d-1_47/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_47/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_47/static_mutex.o gcc/boost_regex-gcc-d-1_47/usinstances.o gcc/boost_regex-gcc-d-1_47/w32_regex_traits.o gcc/boost_regex-gcc-d-1_47/wc_regex_traits.o gcc/boost_regex-gcc-d-1_47/wide_posix_api.o gcc/boost_regex-gcc-d-1_47/winstances.o + -ar -s gcc/libboost_regex-gcc-d-1_47.a diff --git a/build/vc10.mak b/build/vc10.mak index fe892724..de8c5fdd 100644 --- a/build/vc10.mak +++ b/build/vc10.mak @@ -62,20 +62,20 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc100-mt-s-1_46_dir ./vc100/libboost_regex-vc100-mt-s-1_46.lib libboost_regex-vc100-mt-sgd-1_46_dir ./vc100/libboost_regex-vc100-mt-sgd-1_46.lib boost_regex-vc100-mt-gd-1_46_dir ./vc100/boost_regex-vc100-mt-gd-1_46.lib boost_regex-vc100-mt-1_46_dir ./vc100/boost_regex-vc100-mt-1_46.lib libboost_regex-vc100-mt-1_46_dir ./vc100/libboost_regex-vc100-mt-1_46.lib libboost_regex-vc100-mt-gd-1_46_dir ./vc100/libboost_regex-vc100-mt-gd-1_46.lib +all : main_dir libboost_regex-vc100-mt-s-1_47_dir ./vc100/libboost_regex-vc100-mt-s-1_47.lib libboost_regex-vc100-mt-sgd-1_47_dir ./vc100/libboost_regex-vc100-mt-sgd-1_47.lib boost_regex-vc100-mt-gd-1_47_dir ./vc100/boost_regex-vc100-mt-gd-1_47.lib boost_regex-vc100-mt-1_47_dir ./vc100/boost_regex-vc100-mt-1_47.lib libboost_regex-vc100-mt-1_47_dir ./vc100/libboost_regex-vc100-mt-1_47.lib libboost_regex-vc100-mt-gd-1_47_dir ./vc100/libboost_regex-vc100-mt-gd-1_47.lib -clean : libboost_regex-vc100-mt-s-1_46_clean libboost_regex-vc100-mt-sgd-1_46_clean boost_regex-vc100-mt-gd-1_46_clean boost_regex-vc100-mt-1_46_clean libboost_regex-vc100-mt-1_46_clean libboost_regex-vc100-mt-gd-1_46_clean +clean : libboost_regex-vc100-mt-s-1_47_clean libboost_regex-vc100-mt-sgd-1_47_clean boost_regex-vc100-mt-gd-1_47_clean boost_regex-vc100-mt-1_47_clean libboost_regex-vc100-mt-1_47_clean libboost_regex-vc100-mt-gd-1_47_clean install : all - copy vc100\libboost_regex-vc100-mt-s-1_46.lib "$(MSVCDIR)\lib" - copy vc100\libboost_regex-vc100-mt-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc100\boost_regex-vc100-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc100\boost_regex-vc100-mt-gd-1_46.dll "$(MSVCDIR)\bin" - copy vc100\boost_regex-vc100-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc100\boost_regex-vc100-mt-1_46.dll "$(MSVCDIR)\bin" - copy vc100\libboost_regex-vc100-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc100\libboost_regex-vc100-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc100\libboost_regex-vc100-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc100\libboost_regex-vc100-mt-s-1_47.lib "$(MSVCDIR)\lib" + copy vc100\libboost_regex-vc100-mt-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc100\boost_regex-vc100-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc100\boost_regex-vc100-mt-gd-1_47.dll "$(MSVCDIR)\bin" + copy vc100\boost_regex-vc100-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc100\boost_regex-vc100-mt-1_47.dll "$(MSVCDIR)\bin" + copy vc100\libboost_regex-vc100-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc100\libboost_regex-vc100-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc100\libboost_regex-vc100-mt-gd-1_47.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc100\$(NULL)" mkdir vc100 @@ -83,409 +83,409 @@ main_dir : ######################################################## # -# section for libboost_regex-vc100-mt-s-1_46.lib +# section for libboost_regex-vc100-mt-s-1_47.lib # ######################################################## -vc100/libboost_regex-vc100-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/c_regex_traits.cpp +vc100/libboost_regex-vc100-mt-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/c_regex_traits.cpp -vc100/libboost_regex-vc100-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc100/libboost_regex-vc100-mt-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc100/libboost_regex-vc100-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/cregex.cpp +vc100/libboost_regex-vc100-mt-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/cregex.cpp -vc100/libboost_regex-vc100-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/fileiter.cpp +vc100/libboost_regex-vc100-mt-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/fileiter.cpp -vc100/libboost_regex-vc100-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/icu.cpp +vc100/libboost_regex-vc100-mt-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/icu.cpp -vc100/libboost_regex-vc100-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/instances.cpp +vc100/libboost_regex-vc100-mt-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/instances.cpp -vc100/libboost_regex-vc100-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/posix_api.cpp +vc100/libboost_regex-vc100-mt-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/posix_api.cpp -vc100/libboost_regex-vc100-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/regex.cpp +vc100/libboost_regex-vc100-mt-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/regex.cpp -vc100/libboost_regex-vc100-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/regex_debug.cpp +vc100/libboost_regex-vc100-mt-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/regex_debug.cpp -vc100/libboost_regex-vc100-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc100/libboost_regex-vc100-mt-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc100/libboost_regex-vc100-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc100/libboost_regex-vc100-mt-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc100/libboost_regex-vc100-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/static_mutex.cpp +vc100/libboost_regex-vc100-mt-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/static_mutex.cpp -vc100/libboost_regex-vc100-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/usinstances.cpp +vc100/libboost_regex-vc100-mt-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/usinstances.cpp -vc100/libboost_regex-vc100-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/w32_regex_traits.cpp +vc100/libboost_regex-vc100-mt-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/w32_regex_traits.cpp -vc100/libboost_regex-vc100-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/wc_regex_traits.cpp +vc100/libboost_regex-vc100-mt-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/wc_regex_traits.cpp -vc100/libboost_regex-vc100-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/wide_posix_api.cpp +vc100/libboost_regex-vc100-mt-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/wide_posix_api.cpp -vc100/libboost_regex-vc100-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_46/ -Fdvc100/libboost_regex-vc100-mt-s-1_46.pdb ../src/winstances.cpp +vc100/libboost_regex-vc100-mt-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-s-1_47/ -Fdvc100/libboost_regex-vc100-mt-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc100-mt-s-1_46_dir : - @if not exist "vc100\libboost_regex-vc100-mt-s-1_46\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-s-1_46 +libboost_regex-vc100-mt-s-1_47_dir : + @if not exist "vc100\libboost_regex-vc100-mt-s-1_47\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-s-1_47 -libboost_regex-vc100-mt-s-1_46_clean : - del vc100\libboost_regex-vc100-mt-s-1_46\*.obj - del vc100\libboost_regex-vc100-mt-s-1_46\*.idb - del vc100\libboost_regex-vc100-mt-s-1_46\*.exp - del vc100\libboost_regex-vc100-mt-s-1_46\*.pch +libboost_regex-vc100-mt-s-1_47_clean : + del vc100\libboost_regex-vc100-mt-s-1_47\*.obj + del vc100\libboost_regex-vc100-mt-s-1_47\*.idb + del vc100\libboost_regex-vc100-mt-s-1_47\*.exp + del vc100\libboost_regex-vc100-mt-s-1_47\*.pch -./vc100/libboost_regex-vc100-mt-s-1_46.lib : vc100/libboost_regex-vc100-mt-s-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/cregex.obj vc100/libboost_regex-vc100-mt-s-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-s-1_46/icu.obj vc100/libboost_regex-vc100-mt-s-1_46/instances.obj vc100/libboost_regex-vc100-mt-s-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-s-1_46/regex.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-s-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-s-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-s-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-s-1_46/winstances.obj - link -lib /nologo /out:vc100/libboost_regex-vc100-mt-s-1_46.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-s-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/cregex.obj vc100/libboost_regex-vc100-mt-s-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-s-1_46/icu.obj vc100/libboost_regex-vc100-mt-s-1_46/instances.obj vc100/libboost_regex-vc100-mt-s-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-s-1_46/regex.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-s-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-s-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-s-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-s-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-s-1_46/winstances.obj +./vc100/libboost_regex-vc100-mt-s-1_47.lib : vc100/libboost_regex-vc100-mt-s-1_47/c_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_47/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_47/cregex.obj vc100/libboost_regex-vc100-mt-s-1_47/fileiter.obj vc100/libboost_regex-vc100-mt-s-1_47/icu.obj vc100/libboost_regex-vc100-mt-s-1_47/instances.obj vc100/libboost_regex-vc100-mt-s-1_47/posix_api.obj vc100/libboost_regex-vc100-mt-s-1_47/regex.obj vc100/libboost_regex-vc100-mt-s-1_47/regex_debug.obj vc100/libboost_regex-vc100-mt-s-1_47/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-s-1_47/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-s-1_47/static_mutex.obj vc100/libboost_regex-vc100-mt-s-1_47/usinstances.obj vc100/libboost_regex-vc100-mt-s-1_47/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_47/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_47/wide_posix_api.obj vc100/libboost_regex-vc100-mt-s-1_47/winstances.obj + link -lib /nologo /out:vc100/libboost_regex-vc100-mt-s-1_47.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-s-1_47/c_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_47/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_47/cregex.obj vc100/libboost_regex-vc100-mt-s-1_47/fileiter.obj vc100/libboost_regex-vc100-mt-s-1_47/icu.obj vc100/libboost_regex-vc100-mt-s-1_47/instances.obj vc100/libboost_regex-vc100-mt-s-1_47/posix_api.obj vc100/libboost_regex-vc100-mt-s-1_47/regex.obj vc100/libboost_regex-vc100-mt-s-1_47/regex_debug.obj vc100/libboost_regex-vc100-mt-s-1_47/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-s-1_47/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-s-1_47/static_mutex.obj vc100/libboost_regex-vc100-mt-s-1_47/usinstances.obj vc100/libboost_regex-vc100-mt-s-1_47/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_47/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-s-1_47/wide_posix_api.obj vc100/libboost_regex-vc100-mt-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc100-mt-sgd-1_46.lib +# section for libboost_regex-vc100-mt-sgd-1_47.lib # ######################################################## -vc100/libboost_regex-vc100-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/cregex.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/cregex.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/fileiter.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/fileiter.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/icu.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/icu.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/instances.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/instances.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/posix_api.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/posix_api.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/regex.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/regex.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/regex_debug.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/regex_debug.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/static_mutex.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/static_mutex.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/usinstances.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/usinstances.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc100/libboost_regex-vc100-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_46/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_46.pdb ../src/winstances.cpp +vc100/libboost_regex-vc100-mt-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-sgd-1_47/ -Fdvc100/libboost_regex-vc100-mt-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc100-mt-sgd-1_46_dir : - @if not exist "vc100\libboost_regex-vc100-mt-sgd-1_46\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-sgd-1_46 +libboost_regex-vc100-mt-sgd-1_47_dir : + @if not exist "vc100\libboost_regex-vc100-mt-sgd-1_47\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-sgd-1_47 -libboost_regex-vc100-mt-sgd-1_46_clean : - del vc100\libboost_regex-vc100-mt-sgd-1_46\*.obj - del vc100\libboost_regex-vc100-mt-sgd-1_46\*.idb - del vc100\libboost_regex-vc100-mt-sgd-1_46\*.exp - del vc100\libboost_regex-vc100-mt-sgd-1_46\*.pch +libboost_regex-vc100-mt-sgd-1_47_clean : + del vc100\libboost_regex-vc100-mt-sgd-1_47\*.obj + del vc100\libboost_regex-vc100-mt-sgd-1_47\*.idb + del vc100\libboost_regex-vc100-mt-sgd-1_47\*.exp + del vc100\libboost_regex-vc100-mt-sgd-1_47\*.pch -./vc100/libboost_regex-vc100-mt-sgd-1_46.lib : vc100/libboost_regex-vc100-mt-sgd-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/cregex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-sgd-1_46/icu.obj vc100/libboost_regex-vc100-mt-sgd-1_46/instances.obj vc100/libboost_regex-vc100-mt-sgd-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-sgd-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-sgd-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_46/winstances.obj - link -lib /nologo /out:vc100/libboost_regex-vc100-mt-sgd-1_46.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-sgd-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/cregex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-sgd-1_46/icu.obj vc100/libboost_regex-vc100-mt-sgd-1_46/instances.obj vc100/libboost_regex-vc100-mt-sgd-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-sgd-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-sgd-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-sgd-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-sgd-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_46/winstances.obj +./vc100/libboost_regex-vc100-mt-sgd-1_47.lib : vc100/libboost_regex-vc100-mt-sgd-1_47/c_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_47/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_47/cregex.obj vc100/libboost_regex-vc100-mt-sgd-1_47/fileiter.obj vc100/libboost_regex-vc100-mt-sgd-1_47/icu.obj vc100/libboost_regex-vc100-mt-sgd-1_47/instances.obj vc100/libboost_regex-vc100-mt-sgd-1_47/posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_47/regex.obj vc100/libboost_regex-vc100-mt-sgd-1_47/regex_debug.obj vc100/libboost_regex-vc100-mt-sgd-1_47/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-sgd-1_47/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-sgd-1_47/static_mutex.obj vc100/libboost_regex-vc100-mt-sgd-1_47/usinstances.obj vc100/libboost_regex-vc100-mt-sgd-1_47/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_47/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_47/wide_posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_47/winstances.obj + link -lib /nologo /out:vc100/libboost_regex-vc100-mt-sgd-1_47.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-sgd-1_47/c_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_47/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_47/cregex.obj vc100/libboost_regex-vc100-mt-sgd-1_47/fileiter.obj vc100/libboost_regex-vc100-mt-sgd-1_47/icu.obj vc100/libboost_regex-vc100-mt-sgd-1_47/instances.obj vc100/libboost_regex-vc100-mt-sgd-1_47/posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_47/regex.obj vc100/libboost_regex-vc100-mt-sgd-1_47/regex_debug.obj vc100/libboost_regex-vc100-mt-sgd-1_47/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-sgd-1_47/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-sgd-1_47/static_mutex.obj vc100/libboost_regex-vc100-mt-sgd-1_47/usinstances.obj vc100/libboost_regex-vc100-mt-sgd-1_47/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_47/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-sgd-1_47/wide_posix_api.obj vc100/libboost_regex-vc100-mt-sgd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc100-mt-gd-1_46.lib +# section for boost_regex-vc100-mt-gd-1_47.lib # ######################################################## -vc100/boost_regex-vc100-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc100/boost_regex-vc100-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc100/boost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc100/boost_regex-vc100-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc100/boost_regex-vc100-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/cregex.cpp +vc100/boost_regex-vc100-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/cregex.cpp -vc100/boost_regex-vc100-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/fileiter.cpp +vc100/boost_regex-vc100-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/fileiter.cpp -vc100/boost_regex-vc100-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/icu.cpp +vc100/boost_regex-vc100-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/icu.cpp -vc100/boost_regex-vc100-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/instances.cpp +vc100/boost_regex-vc100-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/instances.cpp -vc100/boost_regex-vc100-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/posix_api.cpp +vc100/boost_regex-vc100-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/posix_api.cpp -vc100/boost_regex-vc100-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/regex.cpp +vc100/boost_regex-vc100-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/regex.cpp -vc100/boost_regex-vc100-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc100/boost_regex-vc100-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc100/boost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc100/boost_regex-vc100-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc100/boost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc100/boost_regex-vc100-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc100/boost_regex-vc100-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc100/boost_regex-vc100-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc100/boost_regex-vc100-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/usinstances.cpp +vc100/boost_regex-vc100-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/usinstances.cpp -vc100/boost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc100/boost_regex-vc100-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc100/boost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc100/boost_regex-vc100-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc100/boost_regex-vc100-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc100/boost_regex-vc100-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc100/boost_regex-vc100-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_46/ -Fdvc100/boost_regex-vc100-mt-gd-1_46.pdb ../src/winstances.cpp +vc100/boost_regex-vc100-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-gd-1_47/ -Fdvc100/boost_regex-vc100-mt-gd-1_47.pdb ../src/winstances.cpp -boost_regex-vc100-mt-gd-1_46_dir : - @if not exist "vc100\boost_regex-vc100-mt-gd-1_46\$(NULL)" mkdir vc100\boost_regex-vc100-mt-gd-1_46 +boost_regex-vc100-mt-gd-1_47_dir : + @if not exist "vc100\boost_regex-vc100-mt-gd-1_47\$(NULL)" mkdir vc100\boost_regex-vc100-mt-gd-1_47 -boost_regex-vc100-mt-gd-1_46_clean : - del vc100\boost_regex-vc100-mt-gd-1_46\*.obj - del vc100\boost_regex-vc100-mt-gd-1_46\*.idb - del vc100\boost_regex-vc100-mt-gd-1_46\*.exp - del vc100\boost_regex-vc100-mt-gd-1_46\*.pch +boost_regex-vc100-mt-gd-1_47_clean : + del vc100\boost_regex-vc100-mt-gd-1_47\*.obj + del vc100\boost_regex-vc100-mt-gd-1_47\*.idb + del vc100\boost_regex-vc100-mt-gd-1_47\*.exp + del vc100\boost_regex-vc100-mt-gd-1_47\*.pch -./vc100/boost_regex-vc100-mt-gd-1_46.lib : vc100/boost_regex-vc100-mt-gd-1_46/c_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/cregex.obj vc100/boost_regex-vc100-mt-gd-1_46/fileiter.obj vc100/boost_regex-vc100-mt-gd-1_46/icu.obj vc100/boost_regex-vc100-mt-gd-1_46/instances.obj vc100/boost_regex-vc100-mt-gd-1_46/posix_api.obj vc100/boost_regex-vc100-mt-gd-1_46/regex.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_debug.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-gd-1_46/static_mutex.obj vc100/boost_regex-vc100-mt-gd-1_46/usinstances.obj vc100/boost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/wide_posix_api.obj vc100/boost_regex-vc100-mt-gd-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc100/boost_regex-vc100-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc100/boost_regex-vc100-mt-gd-1_46.dll" /implib:"vc100/boost_regex-vc100-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc100/boost_regex-vc100-mt-gd-1_46/c_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/cregex.obj vc100/boost_regex-vc100-mt-gd-1_46/fileiter.obj vc100/boost_regex-vc100-mt-gd-1_46/icu.obj vc100/boost_regex-vc100-mt-gd-1_46/instances.obj vc100/boost_regex-vc100-mt-gd-1_46/posix_api.obj vc100/boost_regex-vc100-mt-gd-1_46/regex.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_debug.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-gd-1_46/static_mutex.obj vc100/boost_regex-vc100-mt-gd-1_46/usinstances.obj vc100/boost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_46/wide_posix_api.obj vc100/boost_regex-vc100-mt-gd-1_46/winstances.obj +./vc100/boost_regex-vc100-mt-gd-1_47.lib : vc100/boost_regex-vc100-mt-gd-1_47/c_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_47/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_47/cregex.obj vc100/boost_regex-vc100-mt-gd-1_47/fileiter.obj vc100/boost_regex-vc100-mt-gd-1_47/icu.obj vc100/boost_regex-vc100-mt-gd-1_47/instances.obj vc100/boost_regex-vc100-mt-gd-1_47/posix_api.obj vc100/boost_regex-vc100-mt-gd-1_47/regex.obj vc100/boost_regex-vc100-mt-gd-1_47/regex_debug.obj vc100/boost_regex-vc100-mt-gd-1_47/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-gd-1_47/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-gd-1_47/static_mutex.obj vc100/boost_regex-vc100-mt-gd-1_47/usinstances.obj vc100/boost_regex-vc100-mt-gd-1_47/w32_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_47/wc_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_47/wide_posix_api.obj vc100/boost_regex-vc100-mt-gd-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc100/boost_regex-vc100-mt-gd-1_47.pdb" /debug /machine:I386 /out:"vc100/boost_regex-vc100-mt-gd-1_47.dll" /implib:"vc100/boost_regex-vc100-mt-gd-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc100/boost_regex-vc100-mt-gd-1_47/c_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_47/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_47/cregex.obj vc100/boost_regex-vc100-mt-gd-1_47/fileiter.obj vc100/boost_regex-vc100-mt-gd-1_47/icu.obj vc100/boost_regex-vc100-mt-gd-1_47/instances.obj vc100/boost_regex-vc100-mt-gd-1_47/posix_api.obj vc100/boost_regex-vc100-mt-gd-1_47/regex.obj vc100/boost_regex-vc100-mt-gd-1_47/regex_debug.obj vc100/boost_regex-vc100-mt-gd-1_47/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-gd-1_47/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-gd-1_47/static_mutex.obj vc100/boost_regex-vc100-mt-gd-1_47/usinstances.obj vc100/boost_regex-vc100-mt-gd-1_47/w32_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_47/wc_regex_traits.obj vc100/boost_regex-vc100-mt-gd-1_47/wide_posix_api.obj vc100/boost_regex-vc100-mt-gd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc100-mt-1_46.lib +# section for boost_regex-vc100-mt-1_47.lib # ######################################################## -vc100/boost_regex-vc100-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/c_regex_traits.cpp +vc100/boost_regex-vc100-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/c_regex_traits.cpp -vc100/boost_regex-vc100-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc100/boost_regex-vc100-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc100/boost_regex-vc100-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/cregex.cpp +vc100/boost_regex-vc100-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/cregex.cpp -vc100/boost_regex-vc100-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/fileiter.cpp +vc100/boost_regex-vc100-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/fileiter.cpp -vc100/boost_regex-vc100-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/icu.cpp +vc100/boost_regex-vc100-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/icu.cpp -vc100/boost_regex-vc100-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/instances.cpp +vc100/boost_regex-vc100-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/instances.cpp -vc100/boost_regex-vc100-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/posix_api.cpp +vc100/boost_regex-vc100-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/posix_api.cpp -vc100/boost_regex-vc100-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/regex.cpp +vc100/boost_regex-vc100-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/regex.cpp -vc100/boost_regex-vc100-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/regex_debug.cpp +vc100/boost_regex-vc100-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/regex_debug.cpp -vc100/boost_regex-vc100-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc100/boost_regex-vc100-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc100/boost_regex-vc100-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc100/boost_regex-vc100-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc100/boost_regex-vc100-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/static_mutex.cpp +vc100/boost_regex-vc100-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/static_mutex.cpp -vc100/boost_regex-vc100-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/usinstances.cpp +vc100/boost_regex-vc100-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/usinstances.cpp -vc100/boost_regex-vc100-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc100/boost_regex-vc100-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc100/boost_regex-vc100-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc100/boost_regex-vc100-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc100/boost_regex-vc100-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/wide_posix_api.cpp +vc100/boost_regex-vc100-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/wide_posix_api.cpp -vc100/boost_regex-vc100-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_46/ -Fdvc100/boost_regex-vc100-mt-1_46.pdb ../src/winstances.cpp +vc100/boost_regex-vc100-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/boost_regex-vc100-mt-1_47/ -Fdvc100/boost_regex-vc100-mt-1_47.pdb ../src/winstances.cpp -boost_regex-vc100-mt-1_46_dir : - @if not exist "vc100\boost_regex-vc100-mt-1_46\$(NULL)" mkdir vc100\boost_regex-vc100-mt-1_46 +boost_regex-vc100-mt-1_47_dir : + @if not exist "vc100\boost_regex-vc100-mt-1_47\$(NULL)" mkdir vc100\boost_regex-vc100-mt-1_47 -boost_regex-vc100-mt-1_46_clean : - del vc100\boost_regex-vc100-mt-1_46\*.obj - del vc100\boost_regex-vc100-mt-1_46\*.idb - del vc100\boost_regex-vc100-mt-1_46\*.exp - del vc100\boost_regex-vc100-mt-1_46\*.pch +boost_regex-vc100-mt-1_47_clean : + del vc100\boost_regex-vc100-mt-1_47\*.obj + del vc100\boost_regex-vc100-mt-1_47\*.idb + del vc100\boost_regex-vc100-mt-1_47\*.exp + del vc100\boost_regex-vc100-mt-1_47\*.pch -./vc100/boost_regex-vc100-mt-1_46.lib : vc100/boost_regex-vc100-mt-1_46/c_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/cregex.obj vc100/boost_regex-vc100-mt-1_46/fileiter.obj vc100/boost_regex-vc100-mt-1_46/icu.obj vc100/boost_regex-vc100-mt-1_46/instances.obj vc100/boost_regex-vc100-mt-1_46/posix_api.obj vc100/boost_regex-vc100-mt-1_46/regex.obj vc100/boost_regex-vc100-mt-1_46/regex_debug.obj vc100/boost_regex-vc100-mt-1_46/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-1_46/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-1_46/static_mutex.obj vc100/boost_regex-vc100-mt-1_46/usinstances.obj vc100/boost_regex-vc100-mt-1_46/w32_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/wc_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/wide_posix_api.obj vc100/boost_regex-vc100-mt-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc100/boost_regex-vc100-mt-1_46.pdb" /debug /machine:I386 /out:"vc100/boost_regex-vc100-mt-1_46.dll" /implib:"vc100/boost_regex-vc100-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc100/boost_regex-vc100-mt-1_46/c_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/cregex.obj vc100/boost_regex-vc100-mt-1_46/fileiter.obj vc100/boost_regex-vc100-mt-1_46/icu.obj vc100/boost_regex-vc100-mt-1_46/instances.obj vc100/boost_regex-vc100-mt-1_46/posix_api.obj vc100/boost_regex-vc100-mt-1_46/regex.obj vc100/boost_regex-vc100-mt-1_46/regex_debug.obj vc100/boost_regex-vc100-mt-1_46/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-1_46/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-1_46/static_mutex.obj vc100/boost_regex-vc100-mt-1_46/usinstances.obj vc100/boost_regex-vc100-mt-1_46/w32_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/wc_regex_traits.obj vc100/boost_regex-vc100-mt-1_46/wide_posix_api.obj vc100/boost_regex-vc100-mt-1_46/winstances.obj +./vc100/boost_regex-vc100-mt-1_47.lib : vc100/boost_regex-vc100-mt-1_47/c_regex_traits.obj vc100/boost_regex-vc100-mt-1_47/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-1_47/cregex.obj vc100/boost_regex-vc100-mt-1_47/fileiter.obj vc100/boost_regex-vc100-mt-1_47/icu.obj vc100/boost_regex-vc100-mt-1_47/instances.obj vc100/boost_regex-vc100-mt-1_47/posix_api.obj vc100/boost_regex-vc100-mt-1_47/regex.obj vc100/boost_regex-vc100-mt-1_47/regex_debug.obj vc100/boost_regex-vc100-mt-1_47/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-1_47/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-1_47/static_mutex.obj vc100/boost_regex-vc100-mt-1_47/usinstances.obj vc100/boost_regex-vc100-mt-1_47/w32_regex_traits.obj vc100/boost_regex-vc100-mt-1_47/wc_regex_traits.obj vc100/boost_regex-vc100-mt-1_47/wide_posix_api.obj vc100/boost_regex-vc100-mt-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc100/boost_regex-vc100-mt-1_47.pdb" /debug /machine:I386 /out:"vc100/boost_regex-vc100-mt-1_47.dll" /implib:"vc100/boost_regex-vc100-mt-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc100/boost_regex-vc100-mt-1_47/c_regex_traits.obj vc100/boost_regex-vc100-mt-1_47/cpp_regex_traits.obj vc100/boost_regex-vc100-mt-1_47/cregex.obj vc100/boost_regex-vc100-mt-1_47/fileiter.obj vc100/boost_regex-vc100-mt-1_47/icu.obj vc100/boost_regex-vc100-mt-1_47/instances.obj vc100/boost_regex-vc100-mt-1_47/posix_api.obj vc100/boost_regex-vc100-mt-1_47/regex.obj vc100/boost_regex-vc100-mt-1_47/regex_debug.obj vc100/boost_regex-vc100-mt-1_47/regex_raw_buffer.obj vc100/boost_regex-vc100-mt-1_47/regex_traits_defaults.obj vc100/boost_regex-vc100-mt-1_47/static_mutex.obj vc100/boost_regex-vc100-mt-1_47/usinstances.obj vc100/boost_regex-vc100-mt-1_47/w32_regex_traits.obj vc100/boost_regex-vc100-mt-1_47/wc_regex_traits.obj vc100/boost_regex-vc100-mt-1_47/wide_posix_api.obj vc100/boost_regex-vc100-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc100-mt-1_46.lib +# section for libboost_regex-vc100-mt-1_47.lib # ######################################################## -vc100/libboost_regex-vc100-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/c_regex_traits.cpp +vc100/libboost_regex-vc100-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/c_regex_traits.cpp -vc100/libboost_regex-vc100-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc100/libboost_regex-vc100-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc100/libboost_regex-vc100-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/cregex.cpp +vc100/libboost_regex-vc100-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/cregex.cpp -vc100/libboost_regex-vc100-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/fileiter.cpp +vc100/libboost_regex-vc100-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/fileiter.cpp -vc100/libboost_regex-vc100-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/icu.cpp +vc100/libboost_regex-vc100-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/icu.cpp -vc100/libboost_regex-vc100-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/instances.cpp +vc100/libboost_regex-vc100-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/instances.cpp -vc100/libboost_regex-vc100-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/posix_api.cpp +vc100/libboost_regex-vc100-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/posix_api.cpp -vc100/libboost_regex-vc100-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/regex.cpp +vc100/libboost_regex-vc100-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/regex.cpp -vc100/libboost_regex-vc100-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/regex_debug.cpp +vc100/libboost_regex-vc100-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/regex_debug.cpp -vc100/libboost_regex-vc100-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc100/libboost_regex-vc100-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc100/libboost_regex-vc100-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc100/libboost_regex-vc100-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc100/libboost_regex-vc100-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/static_mutex.cpp +vc100/libboost_regex-vc100-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/static_mutex.cpp -vc100/libboost_regex-vc100-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/usinstances.cpp +vc100/libboost_regex-vc100-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/usinstances.cpp -vc100/libboost_regex-vc100-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc100/libboost_regex-vc100-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc100/libboost_regex-vc100-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc100/libboost_regex-vc100-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc100/libboost_regex-vc100-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/wide_posix_api.cpp +vc100/libboost_regex-vc100-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/wide_posix_api.cpp -vc100/libboost_regex-vc100-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_46/ -Fdvc100/libboost_regex-vc100-mt-1_46.pdb ../src/winstances.cpp +vc100/libboost_regex-vc100-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-1_47/ -Fdvc100/libboost_regex-vc100-mt-1_47.pdb ../src/winstances.cpp -libboost_regex-vc100-mt-1_46_dir : - @if not exist "vc100\libboost_regex-vc100-mt-1_46\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-1_46 +libboost_regex-vc100-mt-1_47_dir : + @if not exist "vc100\libboost_regex-vc100-mt-1_47\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-1_47 -libboost_regex-vc100-mt-1_46_clean : - del vc100\libboost_regex-vc100-mt-1_46\*.obj - del vc100\libboost_regex-vc100-mt-1_46\*.idb - del vc100\libboost_regex-vc100-mt-1_46\*.exp - del vc100\libboost_regex-vc100-mt-1_46\*.pch +libboost_regex-vc100-mt-1_47_clean : + del vc100\libboost_regex-vc100-mt-1_47\*.obj + del vc100\libboost_regex-vc100-mt-1_47\*.idb + del vc100\libboost_regex-vc100-mt-1_47\*.exp + del vc100\libboost_regex-vc100-mt-1_47\*.pch -./vc100/libboost_regex-vc100-mt-1_46.lib : vc100/libboost_regex-vc100-mt-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/cregex.obj vc100/libboost_regex-vc100-mt-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-1_46/icu.obj vc100/libboost_regex-vc100-mt-1_46/instances.obj vc100/libboost_regex-vc100-mt-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-1_46/regex.obj vc100/libboost_regex-vc100-mt-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-1_46/winstances.obj - link -lib /nologo /out:vc100/libboost_regex-vc100-mt-1_46.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/cregex.obj vc100/libboost_regex-vc100-mt-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-1_46/icu.obj vc100/libboost_regex-vc100-mt-1_46/instances.obj vc100/libboost_regex-vc100-mt-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-1_46/regex.obj vc100/libboost_regex-vc100-mt-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-1_46/winstances.obj +./vc100/libboost_regex-vc100-mt-1_47.lib : vc100/libboost_regex-vc100-mt-1_47/c_regex_traits.obj vc100/libboost_regex-vc100-mt-1_47/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-1_47/cregex.obj vc100/libboost_regex-vc100-mt-1_47/fileiter.obj vc100/libboost_regex-vc100-mt-1_47/icu.obj vc100/libboost_regex-vc100-mt-1_47/instances.obj vc100/libboost_regex-vc100-mt-1_47/posix_api.obj vc100/libboost_regex-vc100-mt-1_47/regex.obj vc100/libboost_regex-vc100-mt-1_47/regex_debug.obj vc100/libboost_regex-vc100-mt-1_47/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-1_47/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-1_47/static_mutex.obj vc100/libboost_regex-vc100-mt-1_47/usinstances.obj vc100/libboost_regex-vc100-mt-1_47/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-1_47/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-1_47/wide_posix_api.obj vc100/libboost_regex-vc100-mt-1_47/winstances.obj + link -lib /nologo /out:vc100/libboost_regex-vc100-mt-1_47.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-1_47/c_regex_traits.obj vc100/libboost_regex-vc100-mt-1_47/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-1_47/cregex.obj vc100/libboost_regex-vc100-mt-1_47/fileiter.obj vc100/libboost_regex-vc100-mt-1_47/icu.obj vc100/libboost_regex-vc100-mt-1_47/instances.obj vc100/libboost_regex-vc100-mt-1_47/posix_api.obj vc100/libboost_regex-vc100-mt-1_47/regex.obj vc100/libboost_regex-vc100-mt-1_47/regex_debug.obj vc100/libboost_regex-vc100-mt-1_47/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-1_47/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-1_47/static_mutex.obj vc100/libboost_regex-vc100-mt-1_47/usinstances.obj vc100/libboost_regex-vc100-mt-1_47/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-1_47/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-1_47/wide_posix_api.obj vc100/libboost_regex-vc100-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc100-mt-gd-1_46.lib +# section for libboost_regex-vc100-mt-gd-1_47.lib # ######################################################## -vc100/libboost_regex-vc100-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/cregex.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/cregex.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/fileiter.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/fileiter.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/icu.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/icu.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/instances.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/instances.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/posix_api.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/posix_api.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/regex.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/regex.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/usinstances.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/usinstances.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc100/libboost_regex-vc100-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_46/ -Fdvc100/libboost_regex-vc100-mt-gd-1_46.pdb ../src/winstances.cpp +vc100/libboost_regex-vc100-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc100/libboost_regex-vc100-mt-gd-1_47/ -Fdvc100/libboost_regex-vc100-mt-gd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc100-mt-gd-1_46_dir : - @if not exist "vc100\libboost_regex-vc100-mt-gd-1_46\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-gd-1_46 +libboost_regex-vc100-mt-gd-1_47_dir : + @if not exist "vc100\libboost_regex-vc100-mt-gd-1_47\$(NULL)" mkdir vc100\libboost_regex-vc100-mt-gd-1_47 -libboost_regex-vc100-mt-gd-1_46_clean : - del vc100\libboost_regex-vc100-mt-gd-1_46\*.obj - del vc100\libboost_regex-vc100-mt-gd-1_46\*.idb - del vc100\libboost_regex-vc100-mt-gd-1_46\*.exp - del vc100\libboost_regex-vc100-mt-gd-1_46\*.pch +libboost_regex-vc100-mt-gd-1_47_clean : + del vc100\libboost_regex-vc100-mt-gd-1_47\*.obj + del vc100\libboost_regex-vc100-mt-gd-1_47\*.idb + del vc100\libboost_regex-vc100-mt-gd-1_47\*.exp + del vc100\libboost_regex-vc100-mt-gd-1_47\*.pch -./vc100/libboost_regex-vc100-mt-gd-1_46.lib : vc100/libboost_regex-vc100-mt-gd-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/cregex.obj vc100/libboost_regex-vc100-mt-gd-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-gd-1_46/icu.obj vc100/libboost_regex-vc100-mt-gd-1_46/instances.obj vc100/libboost_regex-vc100-mt-gd-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-gd-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-gd-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_46/winstances.obj - link -lib /nologo /out:vc100/libboost_regex-vc100-mt-gd-1_46.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-gd-1_46/c_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/cregex.obj vc100/libboost_regex-vc100-mt-gd-1_46/fileiter.obj vc100/libboost_regex-vc100-mt-gd-1_46/icu.obj vc100/libboost_regex-vc100-mt-gd-1_46/instances.obj vc100/libboost_regex-vc100-mt-gd-1_46/posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_debug.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-gd-1_46/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-gd-1_46/static_mutex.obj vc100/libboost_regex-vc100-mt-gd-1_46/usinstances.obj vc100/libboost_regex-vc100-mt-gd-1_46/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_46/wide_posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_46/winstances.obj +./vc100/libboost_regex-vc100-mt-gd-1_47.lib : vc100/libboost_regex-vc100-mt-gd-1_47/c_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_47/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_47/cregex.obj vc100/libboost_regex-vc100-mt-gd-1_47/fileiter.obj vc100/libboost_regex-vc100-mt-gd-1_47/icu.obj vc100/libboost_regex-vc100-mt-gd-1_47/instances.obj vc100/libboost_regex-vc100-mt-gd-1_47/posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_47/regex.obj vc100/libboost_regex-vc100-mt-gd-1_47/regex_debug.obj vc100/libboost_regex-vc100-mt-gd-1_47/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-gd-1_47/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-gd-1_47/static_mutex.obj vc100/libboost_regex-vc100-mt-gd-1_47/usinstances.obj vc100/libboost_regex-vc100-mt-gd-1_47/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_47/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_47/wide_posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_47/winstances.obj + link -lib /nologo /out:vc100/libboost_regex-vc100-mt-gd-1_47.lib $(XSFLAGS) vc100/libboost_regex-vc100-mt-gd-1_47/c_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_47/cpp_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_47/cregex.obj vc100/libboost_regex-vc100-mt-gd-1_47/fileiter.obj vc100/libboost_regex-vc100-mt-gd-1_47/icu.obj vc100/libboost_regex-vc100-mt-gd-1_47/instances.obj vc100/libboost_regex-vc100-mt-gd-1_47/posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_47/regex.obj vc100/libboost_regex-vc100-mt-gd-1_47/regex_debug.obj vc100/libboost_regex-vc100-mt-gd-1_47/regex_raw_buffer.obj vc100/libboost_regex-vc100-mt-gd-1_47/regex_traits_defaults.obj vc100/libboost_regex-vc100-mt-gd-1_47/static_mutex.obj vc100/libboost_regex-vc100-mt-gd-1_47/usinstances.obj vc100/libboost_regex-vc100-mt-gd-1_47/w32_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_47/wc_regex_traits.obj vc100/libboost_regex-vc100-mt-gd-1_47/wide_posix_api.obj vc100/libboost_regex-vc100-mt-gd-1_47/winstances.obj diff --git a/build/vc6-stlport.mak b/build/vc6-stlport.mak index 28110ffe..b367e646 100644 --- a/build/vc6-stlport.mak +++ b/build/vc6-stlport.mak @@ -62,22 +62,22 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc6-mt-sp-1_46_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_46.lib boost_regex-vc6-mt-p-1_46_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_46.lib libboost_regex-vc6-mt-p-1_46_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_46.lib boost_regex-vc6-mt-gdp-1_46_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_46.lib libboost_regex-vc6-mt-sgdp-1_46_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.lib libboost_regex-vc6-mt-gdp-1_46_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46.lib +all : main_dir libboost_regex-vc6-mt-sp-1_47_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_47.lib boost_regex-vc6-mt-p-1_47_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_47.lib libboost_regex-vc6-mt-p-1_47_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_47.lib boost_regex-vc6-mt-gdp-1_47_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_47.lib libboost_regex-vc6-mt-sgdp-1_47_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.lib libboost_regex-vc6-mt-gdp-1_47_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47.lib -clean : libboost_regex-vc6-mt-sp-1_46_clean boost_regex-vc6-mt-p-1_46_clean libboost_regex-vc6-mt-p-1_46_clean boost_regex-vc6-mt-gdp-1_46_clean libboost_regex-vc6-mt-sgdp-1_46_clean libboost_regex-vc6-mt-gdp-1_46_clean +clean : libboost_regex-vc6-mt-sp-1_47_clean boost_regex-vc6-mt-p-1_47_clean libboost_regex-vc6-mt-p-1_47_clean boost_regex-vc6-mt-gdp-1_47_clean libboost_regex-vc6-mt-sgdp-1_47_clean libboost_regex-vc6-mt-gdp-1_47_clean install : stlport_check all - copy vc6-stlport\libboost_regex-vc6-mt-sp-1_46.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_46.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_46.dll "$(MSVCDIR)\bin" - copy vc6-stlport\libboost_regex-vc6-mt-p-1_46.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_46.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_46.dll "$(MSVCDIR)\bin" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_46.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sp-1_47.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_47.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_47.dll "$(MSVCDIR)\bin" + copy vc6-stlport\libboost_regex-vc6-mt-p-1_47.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_47.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_47.dll "$(MSVCDIR)\bin" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_47.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_47.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_47.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_47.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_47.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6-stlport\$(NULL)" mkdir vc6-stlport @@ -88,409 +88,409 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc6-mt-sp-1_46.lib +# section for libboost_regex-vc6-mt-sp-1_47.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_46.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sp-1_46_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_46\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_46 +libboost_regex-vc6-mt-sp-1_47_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_47\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_47 -libboost_regex-vc6-mt-sp-1_46_clean : - del vc6-stlport\libboost_regex-vc6-mt-sp-1_46\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sp-1_46\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sp-1_46\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sp-1_46\*.pch +libboost_regex-vc6-mt-sp-1_47_clean : + del vc6-stlport\libboost_regex-vc6-mt-sp-1_47\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sp-1_47\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sp-1_47\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sp-1_47\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sp-1_46.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_46.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_46/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sp-1_47.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_47/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_47.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_47/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-p-1_46.lib +# section for boost_regex-vc6-mt-p-1_47.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_46.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_47.pdb ../src/winstances.cpp -boost_regex-vc6-mt-p-1_46_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_46\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_46 +boost_regex-vc6-mt-p-1_47_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_47\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_47 -boost_regex-vc6-mt-p-1_46_clean : - del vc6-stlport\boost_regex-vc6-mt-p-1_46\*.obj - del vc6-stlport\boost_regex-vc6-mt-p-1_46\*.idb - del vc6-stlport\boost_regex-vc6-mt-p-1_46\*.exp - del vc6-stlport\boost_regex-vc6-mt-p-1_46\*.pch +boost_regex-vc6-mt-p-1_47_clean : + del vc6-stlport\boost_regex-vc6-mt-p-1_47\*.obj + del vc6-stlport\boost_regex-vc6-mt-p-1_47\*.idb + del vc6-stlport\boost_regex-vc6-mt-p-1_47\*.exp + del vc6-stlport\boost_regex-vc6-mt-p-1_47\*.pch -./vc6-stlport/boost_regex-vc6-mt-p-1_46.lib : vc6-stlport/boost_regex-vc6-mt-p-1_46/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6-stlport/boost_regex-vc6-mt-p-1_46.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_46.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_46/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_46/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-p-1_47.lib : vc6-stlport/boost_regex-vc6-mt-p-1_47/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6-stlport/boost_regex-vc6-mt-p-1_47.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_47.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_47/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-p-1_46.lib +# section for libboost_regex-vc6-mt-p-1_47.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_46.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-p-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-p-1_46_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_46\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_46 +libboost_regex-vc6-mt-p-1_47_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_47\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_47 -libboost_regex-vc6-mt-p-1_46_clean : - del vc6-stlport\libboost_regex-vc6-mt-p-1_46\*.obj - del vc6-stlport\libboost_regex-vc6-mt-p-1_46\*.idb - del vc6-stlport\libboost_regex-vc6-mt-p-1_46\*.exp - del vc6-stlport\libboost_regex-vc6-mt-p-1_46\*.pch +libboost_regex-vc6-mt-p-1_47_clean : + del vc6-stlport\libboost_regex-vc6-mt-p-1_47\*.obj + del vc6-stlport\libboost_regex-vc6-mt-p-1_47\*.idb + del vc6-stlport\libboost_regex-vc6-mt-p-1_47\*.exp + del vc6-stlport\libboost_regex-vc6-mt-p-1_47\*.pch -./vc6-stlport/libboost_regex-vc6-mt-p-1_46.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_46.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_46/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-p-1_47.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_47/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_47.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_47/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gdp-1_46.lib +# section for boost_regex-vc6-mt-gdp-1_47.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/boost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gdp-1_46_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_46\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_46 +boost_regex-vc6-mt-gdp-1_47_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_47\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_47 -boost_regex-vc6-mt-gdp-1_46_clean : - del vc6-stlport\boost_regex-vc6-mt-gdp-1_46\*.obj - del vc6-stlport\boost_regex-vc6-mt-gdp-1_46\*.idb - del vc6-stlport\boost_regex-vc6-mt-gdp-1_46\*.exp - del vc6-stlport\boost_regex-vc6-mt-gdp-1_46\*.pch +boost_regex-vc6-mt-gdp-1_47_clean : + del vc6-stlport\boost_regex-vc6-mt-gdp-1_47\*.obj + del vc6-stlport\boost_regex-vc6-mt-gdp-1_47\*.idb + del vc6-stlport\boost_regex-vc6-mt-gdp-1_47\*.exp + del vc6-stlport\boost_regex-vc6-mt-gdp-1_47\*.pch -./vc6-stlport/boost_regex-vc6-mt-gdp-1_46.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6-stlport/boost_regex-vc6-mt-gdp-1_46.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_46.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_46/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-gdp-1_47.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_47/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6-stlport/boost_regex-vc6-mt-gdp-1_47.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_47.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_47/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgdp-1_46.lib +# section for libboost_regex-vc6-mt-sgdp-1_47.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgdp-1_46_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46 +libboost_regex-vc6-mt-sgdp-1_47_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_47\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_47 -libboost_regex-vc6-mt-sgdp-1_46_clean : - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_46\*.pch +libboost_regex-vc6-mt-sgdp-1_47_clean : + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_47\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_47\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_47\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_47\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_46/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gdp-1_46.lib +# section for libboost_regex-vc6-mt-gdp-1_47.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_46.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gdp-1_46_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_46 +libboost_regex-vc6-mt-gdp-1_47_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_47\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_47 -libboost_regex-vc6-mt-gdp-1_46_clean : - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\*.obj - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\*.idb - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\*.exp - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_46\*.pch +libboost_regex-vc6-mt-gdp-1_47_clean : + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_47\*.obj + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_47\*.idb + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_47\*.exp + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_47\*.pch -./vc6-stlport/libboost_regex-vc6-mt-gdp-1_46.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_46.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_46/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-gdp-1_47.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_47.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_47/winstances.obj diff --git a/build/vc6.mak b/build/vc6.mak index c343901b..a8eb5382 100644 --- a/build/vc6.mak +++ b/build/vc6.mak @@ -62,25 +62,25 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc6-s-1_46_dir ./vc6/libboost_regex-vc6-s-1_46.lib libboost_regex-vc6-mt-s-1_46_dir ./vc6/libboost_regex-vc6-mt-s-1_46.lib libboost_regex-vc6-sgd-1_46_dir ./vc6/libboost_regex-vc6-sgd-1_46.lib libboost_regex-vc6-mt-sgd-1_46_dir ./vc6/libboost_regex-vc6-mt-sgd-1_46.lib boost_regex-vc6-mt-gd-1_46_dir ./vc6/boost_regex-vc6-mt-gd-1_46.lib boost_regex-vc6-mt-1_46_dir ./vc6/boost_regex-vc6-mt-1_46.lib libboost_regex-vc6-mt-1_46_dir ./vc6/libboost_regex-vc6-mt-1_46.lib libboost_regex-vc6-mt-gd-1_46_dir ./vc6/libboost_regex-vc6-mt-gd-1_46.lib +all : main_dir libboost_regex-vc6-s-1_47_dir ./vc6/libboost_regex-vc6-s-1_47.lib libboost_regex-vc6-mt-s-1_47_dir ./vc6/libboost_regex-vc6-mt-s-1_47.lib libboost_regex-vc6-sgd-1_47_dir ./vc6/libboost_regex-vc6-sgd-1_47.lib libboost_regex-vc6-mt-sgd-1_47_dir ./vc6/libboost_regex-vc6-mt-sgd-1_47.lib boost_regex-vc6-mt-gd-1_47_dir ./vc6/boost_regex-vc6-mt-gd-1_47.lib boost_regex-vc6-mt-1_47_dir ./vc6/boost_regex-vc6-mt-1_47.lib libboost_regex-vc6-mt-1_47_dir ./vc6/libboost_regex-vc6-mt-1_47.lib libboost_regex-vc6-mt-gd-1_47_dir ./vc6/libboost_regex-vc6-mt-gd-1_47.lib -clean : libboost_regex-vc6-s-1_46_clean libboost_regex-vc6-mt-s-1_46_clean libboost_regex-vc6-sgd-1_46_clean libboost_regex-vc6-mt-sgd-1_46_clean boost_regex-vc6-mt-gd-1_46_clean boost_regex-vc6-mt-1_46_clean libboost_regex-vc6-mt-1_46_clean libboost_regex-vc6-mt-gd-1_46_clean +clean : libboost_regex-vc6-s-1_47_clean libboost_regex-vc6-mt-s-1_47_clean libboost_regex-vc6-sgd-1_47_clean libboost_regex-vc6-mt-sgd-1_47_clean boost_regex-vc6-mt-gd-1_47_clean boost_regex-vc6-mt-1_47_clean libboost_regex-vc6-mt-1_47_clean libboost_regex-vc6-mt-gd-1_47_clean install : all - copy vc6\libboost_regex-vc6-s-1_46.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-s-1_46.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_46.pdb "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_46.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_46.dll "$(MSVCDIR)\bin" - copy vc6\boost_regex-vc6-mt-gd-1_46.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_46.dll "$(MSVCDIR)\bin" - copy vc6\libboost_regex-vc6-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-s-1_47.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-s-1_47.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_47.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_47.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_47.dll "$(MSVCDIR)\bin" + copy vc6\boost_regex-vc6-mt-gd-1_47.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_47.dll "$(MSVCDIR)\bin" + copy vc6\libboost_regex-vc6-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_47.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6\$(NULL)" mkdir vc6 @@ -88,545 +88,545 @@ main_dir : ######################################################## # -# section for libboost_regex-vc6-s-1_46.lib +# section for libboost_regex-vc6-s-1_47.lib # ######################################################## -vc6/libboost_regex-vc6-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_46/ -Fdvc6/libboost_regex-vc6-s-1_46.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-s-1_47/ -Fdvc6/libboost_regex-vc6-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-s-1_46_dir : - @if not exist "vc6\libboost_regex-vc6-s-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_46 +libboost_regex-vc6-s-1_47_dir : + @if not exist "vc6\libboost_regex-vc6-s-1_47\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_47 -libboost_regex-vc6-s-1_46_clean : - del vc6\libboost_regex-vc6-s-1_46\*.obj - del vc6\libboost_regex-vc6-s-1_46\*.idb - del vc6\libboost_regex-vc6-s-1_46\*.exp - del vc6\libboost_regex-vc6-s-1_46\*.pch +libboost_regex-vc6-s-1_47_clean : + del vc6\libboost_regex-vc6-s-1_47\*.obj + del vc6\libboost_regex-vc6-s-1_47\*.idb + del vc6\libboost_regex-vc6-s-1_47\*.exp + del vc6\libboost_regex-vc6-s-1_47\*.pch -./vc6/libboost_regex-vc6-s-1_46.lib : vc6/libboost_regex-vc6-s-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/cregex.obj vc6/libboost_regex-vc6-s-1_46/fileiter.obj vc6/libboost_regex-vc6-s-1_46/icu.obj vc6/libboost_regex-vc6-s-1_46/instances.obj vc6/libboost_regex-vc6-s-1_46/posix_api.obj vc6/libboost_regex-vc6-s-1_46/regex.obj vc6/libboost_regex-vc6-s-1_46/regex_debug.obj vc6/libboost_regex-vc6-s-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_46/static_mutex.obj vc6/libboost_regex-vc6-s-1_46/usinstances.obj vc6/libboost_regex-vc6-s-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_46/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/cregex.obj vc6/libboost_regex-vc6-s-1_46/fileiter.obj vc6/libboost_regex-vc6-s-1_46/icu.obj vc6/libboost_regex-vc6-s-1_46/instances.obj vc6/libboost_regex-vc6-s-1_46/posix_api.obj vc6/libboost_regex-vc6-s-1_46/regex.obj vc6/libboost_regex-vc6-s-1_46/regex_debug.obj vc6/libboost_regex-vc6-s-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_46/static_mutex.obj vc6/libboost_regex-vc6-s-1_46/usinstances.obj vc6/libboost_regex-vc6-s-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_46/winstances.obj +./vc6/libboost_regex-vc6-s-1_47.lib : vc6/libboost_regex-vc6-s-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_47/cregex.obj vc6/libboost_regex-vc6-s-1_47/fileiter.obj vc6/libboost_regex-vc6-s-1_47/icu.obj vc6/libboost_regex-vc6-s-1_47/instances.obj vc6/libboost_regex-vc6-s-1_47/posix_api.obj vc6/libboost_regex-vc6-s-1_47/regex.obj vc6/libboost_regex-vc6-s-1_47/regex_debug.obj vc6/libboost_regex-vc6-s-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_47/static_mutex.obj vc6/libboost_regex-vc6-s-1_47/usinstances.obj vc6/libboost_regex-vc6-s-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_47/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_47.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_47/cregex.obj vc6/libboost_regex-vc6-s-1_47/fileiter.obj vc6/libboost_regex-vc6-s-1_47/icu.obj vc6/libboost_regex-vc6-s-1_47/instances.obj vc6/libboost_regex-vc6-s-1_47/posix_api.obj vc6/libboost_regex-vc6-s-1_47/regex.obj vc6/libboost_regex-vc6-s-1_47/regex_debug.obj vc6/libboost_regex-vc6-s-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_47/static_mutex.obj vc6/libboost_regex-vc6-s-1_47/usinstances.obj vc6/libboost_regex-vc6-s-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-s-1_46.lib +# section for libboost_regex-vc6-mt-s-1_47.lib # ######################################################## -vc6/libboost_regex-vc6-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_46/ -Fdvc6/libboost_regex-vc6-mt-s-1_46.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-s-1_47/ -Fdvc6/libboost_regex-vc6-mt-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-s-1_46_dir : - @if not exist "vc6\libboost_regex-vc6-mt-s-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_46 +libboost_regex-vc6-mt-s-1_47_dir : + @if not exist "vc6\libboost_regex-vc6-mt-s-1_47\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_47 -libboost_regex-vc6-mt-s-1_46_clean : - del vc6\libboost_regex-vc6-mt-s-1_46\*.obj - del vc6\libboost_regex-vc6-mt-s-1_46\*.idb - del vc6\libboost_regex-vc6-mt-s-1_46\*.exp - del vc6\libboost_regex-vc6-mt-s-1_46\*.pch +libboost_regex-vc6-mt-s-1_47_clean : + del vc6\libboost_regex-vc6-mt-s-1_47\*.obj + del vc6\libboost_regex-vc6-mt-s-1_47\*.idb + del vc6\libboost_regex-vc6-mt-s-1_47\*.exp + del vc6\libboost_regex-vc6-mt-s-1_47\*.pch -./vc6/libboost_regex-vc6-mt-s-1_46.lib : vc6/libboost_regex-vc6-mt-s-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/cregex.obj vc6/libboost_regex-vc6-mt-s-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_46/icu.obj vc6/libboost_regex-vc6-mt-s-1_46/instances.obj vc6/libboost_regex-vc6-mt-s-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_46/regex.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_46/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/cregex.obj vc6/libboost_regex-vc6-mt-s-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_46/icu.obj vc6/libboost_regex-vc6-mt-s-1_46/instances.obj vc6/libboost_regex-vc6-mt-s-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_46/regex.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_46/winstances.obj +./vc6/libboost_regex-vc6-mt-s-1_47.lib : vc6/libboost_regex-vc6-mt-s-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_47/cregex.obj vc6/libboost_regex-vc6-mt-s-1_47/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_47/icu.obj vc6/libboost_regex-vc6-mt-s-1_47/instances.obj vc6/libboost_regex-vc6-mt-s-1_47/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_47/regex.obj vc6/libboost_regex-vc6-mt-s-1_47/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_47/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_47/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_47/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_47.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_47/cregex.obj vc6/libboost_regex-vc6-mt-s-1_47/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_47/icu.obj vc6/libboost_regex-vc6-mt-s-1_47/instances.obj vc6/libboost_regex-vc6-mt-s-1_47/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_47/regex.obj vc6/libboost_regex-vc6-mt-s-1_47/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_47/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_47/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc6-sgd-1_46.lib +# section for libboost_regex-vc6-sgd-1_47.lib # ######################################################## -vc6/libboost_regex-vc6-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_46/ -Fdvc6/libboost_regex-vc6-sgd-1_46.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-sgd-1_47/ -Fdvc6/libboost_regex-vc6-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-sgd-1_46_dir : - @if not exist "vc6\libboost_regex-vc6-sgd-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_46 +libboost_regex-vc6-sgd-1_47_dir : + @if not exist "vc6\libboost_regex-vc6-sgd-1_47\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_47 -libboost_regex-vc6-sgd-1_46_clean : - del vc6\libboost_regex-vc6-sgd-1_46\*.obj - del vc6\libboost_regex-vc6-sgd-1_46\*.idb - del vc6\libboost_regex-vc6-sgd-1_46\*.exp - del vc6\libboost_regex-vc6-sgd-1_46\*.pch +libboost_regex-vc6-sgd-1_47_clean : + del vc6\libboost_regex-vc6-sgd-1_47\*.obj + del vc6\libboost_regex-vc6-sgd-1_47\*.idb + del vc6\libboost_regex-vc6-sgd-1_47\*.exp + del vc6\libboost_regex-vc6-sgd-1_47\*.pch -./vc6/libboost_regex-vc6-sgd-1_46.lib : vc6/libboost_regex-vc6-sgd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/cregex.obj vc6/libboost_regex-vc6-sgd-1_46/fileiter.obj vc6/libboost_regex-vc6-sgd-1_46/icu.obj vc6/libboost_regex-vc6-sgd-1_46/instances.obj vc6/libboost_regex-vc6-sgd-1_46/posix_api.obj vc6/libboost_regex-vc6-sgd-1_46/regex.obj vc6/libboost_regex-vc6-sgd-1_46/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_46/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_46/usinstances.obj vc6/libboost_regex-vc6-sgd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_46/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/cregex.obj vc6/libboost_regex-vc6-sgd-1_46/fileiter.obj vc6/libboost_regex-vc6-sgd-1_46/icu.obj vc6/libboost_regex-vc6-sgd-1_46/instances.obj vc6/libboost_regex-vc6-sgd-1_46/posix_api.obj vc6/libboost_regex-vc6-sgd-1_46/regex.obj vc6/libboost_regex-vc6-sgd-1_46/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_46/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_46/usinstances.obj vc6/libboost_regex-vc6-sgd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_46/winstances.obj +./vc6/libboost_regex-vc6-sgd-1_47.lib : vc6/libboost_regex-vc6-sgd-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_47/cregex.obj vc6/libboost_regex-vc6-sgd-1_47/fileiter.obj vc6/libboost_regex-vc6-sgd-1_47/icu.obj vc6/libboost_regex-vc6-sgd-1_47/instances.obj vc6/libboost_regex-vc6-sgd-1_47/posix_api.obj vc6/libboost_regex-vc6-sgd-1_47/regex.obj vc6/libboost_regex-vc6-sgd-1_47/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_47/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_47/usinstances.obj vc6/libboost_regex-vc6-sgd-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_47/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_47.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_47/cregex.obj vc6/libboost_regex-vc6-sgd-1_47/fileiter.obj vc6/libboost_regex-vc6-sgd-1_47/icu.obj vc6/libboost_regex-vc6-sgd-1_47/instances.obj vc6/libboost_regex-vc6-sgd-1_47/posix_api.obj vc6/libboost_regex-vc6-sgd-1_47/regex.obj vc6/libboost_regex-vc6-sgd-1_47/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_47/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_47/usinstances.obj vc6/libboost_regex-vc6-sgd-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgd-1_46.lib +# section for libboost_regex-vc6-mt-sgd-1_47.lib # ######################################################## -vc6/libboost_regex-vc6-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_46/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_46.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-sgd-1_47/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgd-1_46_dir : - @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_46 +libboost_regex-vc6-mt-sgd-1_47_dir : + @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_47\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_47 -libboost_regex-vc6-mt-sgd-1_46_clean : - del vc6\libboost_regex-vc6-mt-sgd-1_46\*.obj - del vc6\libboost_regex-vc6-mt-sgd-1_46\*.idb - del vc6\libboost_regex-vc6-mt-sgd-1_46\*.exp - del vc6\libboost_regex-vc6-mt-sgd-1_46\*.pch +libboost_regex-vc6-mt-sgd-1_47_clean : + del vc6\libboost_regex-vc6-mt-sgd-1_47\*.obj + del vc6\libboost_regex-vc6-mt-sgd-1_47\*.idb + del vc6\libboost_regex-vc6-mt-sgd-1_47\*.exp + del vc6\libboost_regex-vc6-mt-sgd-1_47\*.pch -./vc6/libboost_regex-vc6-mt-sgd-1_46.lib : vc6/libboost_regex-vc6-mt-sgd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_46/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_46/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_46/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_46/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_46/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_46/winstances.obj +./vc6/libboost_regex-vc6-mt-sgd-1_47.lib : vc6/libboost_regex-vc6-mt-sgd-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_47/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_47/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_47/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_47/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_47/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_47/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_47/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_47/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_47/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_47/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_47.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_47/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_47/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_47/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_47/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_47/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_47/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_47/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_47/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_47/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gd-1_46.lib +# section for boost_regex-vc6-mt-gd-1_47.lib # ######################################################## -vc6/boost_regex-vc6-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_46/ -Fdvc6/boost_regex-vc6-mt-gd-1_46.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-gd-1_47/ -Fdvc6/boost_regex-vc6-mt-gd-1_47.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gd-1_46_dir : - @if not exist "vc6\boost_regex-vc6-mt-gd-1_46\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_46 +boost_regex-vc6-mt-gd-1_47_dir : + @if not exist "vc6\boost_regex-vc6-mt-gd-1_47\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_47 -boost_regex-vc6-mt-gd-1_46_clean : - del vc6\boost_regex-vc6-mt-gd-1_46\*.obj - del vc6\boost_regex-vc6-mt-gd-1_46\*.idb - del vc6\boost_regex-vc6-mt-gd-1_46\*.exp - del vc6\boost_regex-vc6-mt-gd-1_46\*.pch +boost_regex-vc6-mt-gd-1_47_clean : + del vc6\boost_regex-vc6-mt-gd-1_47\*.obj + del vc6\boost_regex-vc6-mt-gd-1_47\*.idb + del vc6\boost_regex-vc6-mt-gd-1_47\*.exp + del vc6\boost_regex-vc6-mt-gd-1_47\*.pch -./vc6/boost_regex-vc6-mt-gd-1_46.lib : vc6/boost_regex-vc6-mt-gd-1_46/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/cregex.obj vc6/boost_regex-vc6-mt-gd-1_46/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_46/icu.obj vc6/boost_regex-vc6-mt-gd-1_46/instances.obj vc6/boost_regex-vc6-mt-gd-1_46/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_46/regex.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_46/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_46/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6/boost_regex-vc6-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_46.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_46/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/cregex.obj vc6/boost_regex-vc6-mt-gd-1_46/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_46/icu.obj vc6/boost_regex-vc6-mt-gd-1_46/instances.obj vc6/boost_regex-vc6-mt-gd-1_46/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_46/regex.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_46/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_46/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_46/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_46/winstances.obj +./vc6/boost_regex-vc6-mt-gd-1_47.lib : vc6/boost_regex-vc6-mt-gd-1_47/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_47/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_47/cregex.obj vc6/boost_regex-vc6-mt-gd-1_47/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_47/icu.obj vc6/boost_regex-vc6-mt-gd-1_47/instances.obj vc6/boost_regex-vc6-mt-gd-1_47/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_47/regex.obj vc6/boost_regex-vc6-mt-gd-1_47/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_47/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_47/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_47/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_47/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_47/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_47/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_47/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6/boost_regex-vc6-mt-gd-1_47.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_47.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_47/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_47/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_47/cregex.obj vc6/boost_regex-vc6-mt-gd-1_47/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_47/icu.obj vc6/boost_regex-vc6-mt-gd-1_47/instances.obj vc6/boost_regex-vc6-mt-gd-1_47/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_47/regex.obj vc6/boost_regex-vc6-mt-gd-1_47/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_47/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_47/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_47/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_47/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_47/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_47/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_47/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-1_46.lib +# section for boost_regex-vc6-mt-1_47.lib # ######################################################## -vc6/boost_regex-vc6-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_46/ -Fdvc6/boost_regex-vc6-mt-1_46.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/boost_regex-vc6-mt-1_47/ -Fdvc6/boost_regex-vc6-mt-1_47.pdb ../src/winstances.cpp -boost_regex-vc6-mt-1_46_dir : - @if not exist "vc6\boost_regex-vc6-mt-1_46\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_46 +boost_regex-vc6-mt-1_47_dir : + @if not exist "vc6\boost_regex-vc6-mt-1_47\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_47 -boost_regex-vc6-mt-1_46_clean : - del vc6\boost_regex-vc6-mt-1_46\*.obj - del vc6\boost_regex-vc6-mt-1_46\*.idb - del vc6\boost_regex-vc6-mt-1_46\*.exp - del vc6\boost_regex-vc6-mt-1_46\*.pch +boost_regex-vc6-mt-1_47_clean : + del vc6\boost_regex-vc6-mt-1_47\*.obj + del vc6\boost_regex-vc6-mt-1_47\*.idb + del vc6\boost_regex-vc6-mt-1_47\*.exp + del vc6\boost_regex-vc6-mt-1_47\*.pch -./vc6/boost_regex-vc6-mt-1_46.lib : vc6/boost_regex-vc6-mt-1_46/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/cregex.obj vc6/boost_regex-vc6-mt-1_46/fileiter.obj vc6/boost_regex-vc6-mt-1_46/icu.obj vc6/boost_regex-vc6-mt-1_46/instances.obj vc6/boost_regex-vc6-mt-1_46/posix_api.obj vc6/boost_regex-vc6-mt-1_46/regex.obj vc6/boost_regex-vc6-mt-1_46/regex_debug.obj vc6/boost_regex-vc6-mt-1_46/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_46/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_46/static_mutex.obj vc6/boost_regex-vc6-mt-1_46/usinstances.obj vc6/boost_regex-vc6-mt-1_46/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6/boost_regex-vc6-mt-1_46.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_46.dll" /implib:"vc6/boost_regex-vc6-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_46/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/cregex.obj vc6/boost_regex-vc6-mt-1_46/fileiter.obj vc6/boost_regex-vc6-mt-1_46/icu.obj vc6/boost_regex-vc6-mt-1_46/instances.obj vc6/boost_regex-vc6-mt-1_46/posix_api.obj vc6/boost_regex-vc6-mt-1_46/regex.obj vc6/boost_regex-vc6-mt-1_46/regex_debug.obj vc6/boost_regex-vc6-mt-1_46/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_46/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_46/static_mutex.obj vc6/boost_regex-vc6-mt-1_46/usinstances.obj vc6/boost_regex-vc6-mt-1_46/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_46/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_46/winstances.obj +./vc6/boost_regex-vc6-mt-1_47.lib : vc6/boost_regex-vc6-mt-1_47/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_47/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_47/cregex.obj vc6/boost_regex-vc6-mt-1_47/fileiter.obj vc6/boost_regex-vc6-mt-1_47/icu.obj vc6/boost_regex-vc6-mt-1_47/instances.obj vc6/boost_regex-vc6-mt-1_47/posix_api.obj vc6/boost_regex-vc6-mt-1_47/regex.obj vc6/boost_regex-vc6-mt-1_47/regex_debug.obj vc6/boost_regex-vc6-mt-1_47/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_47/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_47/static_mutex.obj vc6/boost_regex-vc6-mt-1_47/usinstances.obj vc6/boost_regex-vc6-mt-1_47/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_47/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_47/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc6/boost_regex-vc6-mt-1_47.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_47.dll" /implib:"vc6/boost_regex-vc6-mt-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_47/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_47/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_47/cregex.obj vc6/boost_regex-vc6-mt-1_47/fileiter.obj vc6/boost_regex-vc6-mt-1_47/icu.obj vc6/boost_regex-vc6-mt-1_47/instances.obj vc6/boost_regex-vc6-mt-1_47/posix_api.obj vc6/boost_regex-vc6-mt-1_47/regex.obj vc6/boost_regex-vc6-mt-1_47/regex_debug.obj vc6/boost_regex-vc6-mt-1_47/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_47/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_47/static_mutex.obj vc6/boost_regex-vc6-mt-1_47/usinstances.obj vc6/boost_regex-vc6-mt-1_47/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_47/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_47/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-1_46.lib +# section for libboost_regex-vc6-mt-1_47.lib # ######################################################## -vc6/libboost_regex-vc6-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_46/ -Fdvc6/libboost_regex-vc6-mt-1_46.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-1_47/ -Fdvc6/libboost_regex-vc6-mt-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-1_46_dir : - @if not exist "vc6\libboost_regex-vc6-mt-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_46 +libboost_regex-vc6-mt-1_47_dir : + @if not exist "vc6\libboost_regex-vc6-mt-1_47\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_47 -libboost_regex-vc6-mt-1_46_clean : - del vc6\libboost_regex-vc6-mt-1_46\*.obj - del vc6\libboost_regex-vc6-mt-1_46\*.idb - del vc6\libboost_regex-vc6-mt-1_46\*.exp - del vc6\libboost_regex-vc6-mt-1_46\*.pch +libboost_regex-vc6-mt-1_47_clean : + del vc6\libboost_regex-vc6-mt-1_47\*.obj + del vc6\libboost_regex-vc6-mt-1_47\*.idb + del vc6\libboost_regex-vc6-mt-1_47\*.exp + del vc6\libboost_regex-vc6-mt-1_47\*.pch -./vc6/libboost_regex-vc6-mt-1_46.lib : vc6/libboost_regex-vc6-mt-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/cregex.obj vc6/libboost_regex-vc6-mt-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-1_46/icu.obj vc6/libboost_regex-vc6-mt-1_46/instances.obj vc6/libboost_regex-vc6-mt-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-1_46/regex.obj vc6/libboost_regex-vc6-mt-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_46/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/cregex.obj vc6/libboost_regex-vc6-mt-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-1_46/icu.obj vc6/libboost_regex-vc6-mt-1_46/instances.obj vc6/libboost_regex-vc6-mt-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-1_46/regex.obj vc6/libboost_regex-vc6-mt-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_46/winstances.obj +./vc6/libboost_regex-vc6-mt-1_47.lib : vc6/libboost_regex-vc6-mt-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_47/cregex.obj vc6/libboost_regex-vc6-mt-1_47/fileiter.obj vc6/libboost_regex-vc6-mt-1_47/icu.obj vc6/libboost_regex-vc6-mt-1_47/instances.obj vc6/libboost_regex-vc6-mt-1_47/posix_api.obj vc6/libboost_regex-vc6-mt-1_47/regex.obj vc6/libboost_regex-vc6-mt-1_47/regex_debug.obj vc6/libboost_regex-vc6-mt-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_47/static_mutex.obj vc6/libboost_regex-vc6-mt-1_47/usinstances.obj vc6/libboost_regex-vc6-mt-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_47/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_47.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_47/cregex.obj vc6/libboost_regex-vc6-mt-1_47/fileiter.obj vc6/libboost_regex-vc6-mt-1_47/icu.obj vc6/libboost_regex-vc6-mt-1_47/instances.obj vc6/libboost_regex-vc6-mt-1_47/posix_api.obj vc6/libboost_regex-vc6-mt-1_47/regex.obj vc6/libboost_regex-vc6-mt-1_47/regex_debug.obj vc6/libboost_regex-vc6-mt-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_47/static_mutex.obj vc6/libboost_regex-vc6-mt-1_47/usinstances.obj vc6/libboost_regex-vc6-mt-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gd-1_46.lib +# section for libboost_regex-vc6-mt-gd-1_47.lib # ######################################################## -vc6/libboost_regex-vc6-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_46/ -Fdvc6/libboost_regex-vc6-mt-gd-1_46.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc6/libboost_regex-vc6-mt-gd-1_47/ -Fdvc6/libboost_regex-vc6-mt-gd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gd-1_46_dir : - @if not exist "vc6\libboost_regex-vc6-mt-gd-1_46\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_46 +libboost_regex-vc6-mt-gd-1_47_dir : + @if not exist "vc6\libboost_regex-vc6-mt-gd-1_47\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_47 -libboost_regex-vc6-mt-gd-1_46_clean : - del vc6\libboost_regex-vc6-mt-gd-1_46\*.obj - del vc6\libboost_regex-vc6-mt-gd-1_46\*.idb - del vc6\libboost_regex-vc6-mt-gd-1_46\*.exp - del vc6\libboost_regex-vc6-mt-gd-1_46\*.pch +libboost_regex-vc6-mt-gd-1_47_clean : + del vc6\libboost_regex-vc6-mt-gd-1_47\*.obj + del vc6\libboost_regex-vc6-mt-gd-1_47\*.idb + del vc6\libboost_regex-vc6-mt-gd-1_47\*.exp + del vc6\libboost_regex-vc6-mt-gd-1_47\*.pch -./vc6/libboost_regex-vc6-mt-gd-1_46.lib : vc6/libboost_regex-vc6-mt-gd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_46/icu.obj vc6/libboost_regex-vc6-mt-gd-1_46/instances.obj vc6/libboost_regex-vc6-mt-gd-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_46/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_46.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_46/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_46/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_46/icu.obj vc6/libboost_regex-vc6-mt-gd-1_46/instances.obj vc6/libboost_regex-vc6-mt-gd-1_46/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_46/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_46/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_46/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_46/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_46/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_46/winstances.obj +./vc6/libboost_regex-vc6-mt-gd-1_47.lib : vc6/libboost_regex-vc6-mt-gd-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_47/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_47/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_47/icu.obj vc6/libboost_regex-vc6-mt-gd-1_47/instances.obj vc6/libboost_regex-vc6-mt-gd-1_47/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_47/regex.obj vc6/libboost_regex-vc6-mt-gd-1_47/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_47/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_47/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_47/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_47.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_47/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_47/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_47/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_47/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_47/icu.obj vc6/libboost_regex-vc6-mt-gd-1_47/instances.obj vc6/libboost_regex-vc6-mt-gd-1_47/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_47/regex.obj vc6/libboost_regex-vc6-mt-gd-1_47/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_47/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_47/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_47/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_47/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_47/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_47/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_47/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_47/winstances.obj diff --git a/build/vc7-stlport.mak b/build/vc7-stlport.mak index ac1e7a54..9d7b4671 100644 --- a/build/vc7-stlport.mak +++ b/build/vc7-stlport.mak @@ -62,22 +62,22 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc7-mt-sp-1_46_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_46.lib boost_regex-vc7-mt-p-1_46_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_46.lib libboost_regex-vc7-mt-p-1_46_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_46.lib boost_regex-vc7-mt-gdp-1_46_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_46.lib libboost_regex-vc7-mt-sgdp-1_46_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.lib libboost_regex-vc7-mt-gdp-1_46_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46.lib +all : main_dir libboost_regex-vc7-mt-sp-1_47_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_47.lib boost_regex-vc7-mt-p-1_47_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_47.lib libboost_regex-vc7-mt-p-1_47_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_47.lib boost_regex-vc7-mt-gdp-1_47_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_47.lib libboost_regex-vc7-mt-sgdp-1_47_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.lib libboost_regex-vc7-mt-gdp-1_47_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47.lib -clean : libboost_regex-vc7-mt-sp-1_46_clean boost_regex-vc7-mt-p-1_46_clean libboost_regex-vc7-mt-p-1_46_clean boost_regex-vc7-mt-gdp-1_46_clean libboost_regex-vc7-mt-sgdp-1_46_clean libboost_regex-vc7-mt-gdp-1_46_clean +clean : libboost_regex-vc7-mt-sp-1_47_clean boost_regex-vc7-mt-p-1_47_clean libboost_regex-vc7-mt-p-1_47_clean boost_regex-vc7-mt-gdp-1_47_clean libboost_regex-vc7-mt-sgdp-1_47_clean libboost_regex-vc7-mt-gdp-1_47_clean install : stlport_check all - copy vc7-stlport\libboost_regex-vc7-mt-sp-1_46.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_46.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_46.dll "$(MSVCDIR)\bin" - copy vc7-stlport\libboost_regex-vc7-mt-p-1_46.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_46.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_46.dll "$(MSVCDIR)\bin" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_46.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sp-1_47.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_47.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_47.dll "$(MSVCDIR)\bin" + copy vc7-stlport\libboost_regex-vc7-mt-p-1_47.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_47.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_47.dll "$(MSVCDIR)\bin" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_47.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_47.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_47.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_47.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_47.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7-stlport\$(NULL)" mkdir vc7-stlport @@ -88,409 +88,409 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc7-mt-sp-1_46.lib +# section for libboost_regex-vc7-mt-sp-1_47.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_46.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sp-1_46_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_46\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_46 +libboost_regex-vc7-mt-sp-1_47_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_47\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_47 -libboost_regex-vc7-mt-sp-1_46_clean : - del vc7-stlport\libboost_regex-vc7-mt-sp-1_46\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sp-1_46\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sp-1_46\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sp-1_46\*.pch +libboost_regex-vc7-mt-sp-1_47_clean : + del vc7-stlport\libboost_regex-vc7-mt-sp-1_47\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sp-1_47\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sp-1_47\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sp-1_47\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sp-1_46.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_46.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_46/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sp-1_47.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_47/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_47.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_47/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-p-1_46.lib +# section for boost_regex-vc7-mt-p-1_47.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_46.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_47.pdb ../src/winstances.cpp -boost_regex-vc7-mt-p-1_46_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_46\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_46 +boost_regex-vc7-mt-p-1_47_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_47\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_47 -boost_regex-vc7-mt-p-1_46_clean : - del vc7-stlport\boost_regex-vc7-mt-p-1_46\*.obj - del vc7-stlport\boost_regex-vc7-mt-p-1_46\*.idb - del vc7-stlport\boost_regex-vc7-mt-p-1_46\*.exp - del vc7-stlport\boost_regex-vc7-mt-p-1_46\*.pch +boost_regex-vc7-mt-p-1_47_clean : + del vc7-stlport\boost_regex-vc7-mt-p-1_47\*.obj + del vc7-stlport\boost_regex-vc7-mt-p-1_47\*.idb + del vc7-stlport\boost_regex-vc7-mt-p-1_47\*.exp + del vc7-stlport\boost_regex-vc7-mt-p-1_47\*.pch -./vc7-stlport/boost_regex-vc7-mt-p-1_46.lib : vc7-stlport/boost_regex-vc7-mt-p-1_46/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7-stlport/boost_regex-vc7-mt-p-1_46.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_46.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_46/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_46/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-p-1_47.lib : vc7-stlport/boost_regex-vc7-mt-p-1_47/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7-stlport/boost_regex-vc7-mt-p-1_47.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_47.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_47/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-p-1_46.lib +# section for libboost_regex-vc7-mt-p-1_47.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_46.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-p-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-p-1_46_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_46\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_46 +libboost_regex-vc7-mt-p-1_47_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_47\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_47 -libboost_regex-vc7-mt-p-1_46_clean : - del vc7-stlport\libboost_regex-vc7-mt-p-1_46\*.obj - del vc7-stlport\libboost_regex-vc7-mt-p-1_46\*.idb - del vc7-stlport\libboost_regex-vc7-mt-p-1_46\*.exp - del vc7-stlport\libboost_regex-vc7-mt-p-1_46\*.pch +libboost_regex-vc7-mt-p-1_47_clean : + del vc7-stlport\libboost_regex-vc7-mt-p-1_47\*.obj + del vc7-stlport\libboost_regex-vc7-mt-p-1_47\*.idb + del vc7-stlport\libboost_regex-vc7-mt-p-1_47\*.exp + del vc7-stlport\libboost_regex-vc7-mt-p-1_47\*.pch -./vc7-stlport/libboost_regex-vc7-mt-p-1_46.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_46.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_46/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-p-1_47.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_47/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_47.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_47/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gdp-1_46.lib +# section for boost_regex-vc7-mt-gdp-1_47.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/boost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gdp-1_46_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_46\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_46 +boost_regex-vc7-mt-gdp-1_47_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_47\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_47 -boost_regex-vc7-mt-gdp-1_46_clean : - del vc7-stlport\boost_regex-vc7-mt-gdp-1_46\*.obj - del vc7-stlport\boost_regex-vc7-mt-gdp-1_46\*.idb - del vc7-stlport\boost_regex-vc7-mt-gdp-1_46\*.exp - del vc7-stlport\boost_regex-vc7-mt-gdp-1_46\*.pch +boost_regex-vc7-mt-gdp-1_47_clean : + del vc7-stlport\boost_regex-vc7-mt-gdp-1_47\*.obj + del vc7-stlport\boost_regex-vc7-mt-gdp-1_47\*.idb + del vc7-stlport\boost_regex-vc7-mt-gdp-1_47\*.exp + del vc7-stlport\boost_regex-vc7-mt-gdp-1_47\*.pch -./vc7-stlport/boost_regex-vc7-mt-gdp-1_46.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7-stlport/boost_regex-vc7-mt-gdp-1_46.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_46.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_46/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-gdp-1_47.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_47/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7-stlport/boost_regex-vc7-mt-gdp-1_47.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_47.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_47/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgdp-1_46.lib +# section for libboost_regex-vc7-mt-sgdp-1_47.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgdp-1_46_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46 +libboost_regex-vc7-mt-sgdp-1_47_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_47\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_47 -libboost_regex-vc7-mt-sgdp-1_46_clean : - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_46\*.pch +libboost_regex-vc7-mt-sgdp-1_47_clean : + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_47\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_47\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_47\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_47\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_46/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gdp-1_46.lib +# section for libboost_regex-vc7-mt-gdp-1_47.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_46.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gdp-1_46_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_46 +libboost_regex-vc7-mt-gdp-1_47_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_47\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_47 -libboost_regex-vc7-mt-gdp-1_46_clean : - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\*.obj - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\*.idb - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\*.exp - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_46\*.pch +libboost_regex-vc7-mt-gdp-1_47_clean : + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_47\*.obj + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_47\*.idb + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_47\*.exp + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_47\*.pch -./vc7-stlport/libboost_regex-vc7-mt-gdp-1_46.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_46.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_46/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-gdp-1_47.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_47.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_47/winstances.obj diff --git a/build/vc7.mak b/build/vc7.mak index 6b331d22..c9992069 100644 --- a/build/vc7.mak +++ b/build/vc7.mak @@ -62,25 +62,25 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc7-s-1_46_dir ./vc7/libboost_regex-vc7-s-1_46.lib libboost_regex-vc7-mt-s-1_46_dir ./vc7/libboost_regex-vc7-mt-s-1_46.lib libboost_regex-vc7-sgd-1_46_dir ./vc7/libboost_regex-vc7-sgd-1_46.lib libboost_regex-vc7-mt-sgd-1_46_dir ./vc7/libboost_regex-vc7-mt-sgd-1_46.lib boost_regex-vc7-mt-gd-1_46_dir ./vc7/boost_regex-vc7-mt-gd-1_46.lib boost_regex-vc7-mt-1_46_dir ./vc7/boost_regex-vc7-mt-1_46.lib libboost_regex-vc7-mt-1_46_dir ./vc7/libboost_regex-vc7-mt-1_46.lib libboost_regex-vc7-mt-gd-1_46_dir ./vc7/libboost_regex-vc7-mt-gd-1_46.lib +all : main_dir libboost_regex-vc7-s-1_47_dir ./vc7/libboost_regex-vc7-s-1_47.lib libboost_regex-vc7-mt-s-1_47_dir ./vc7/libboost_regex-vc7-mt-s-1_47.lib libboost_regex-vc7-sgd-1_47_dir ./vc7/libboost_regex-vc7-sgd-1_47.lib libboost_regex-vc7-mt-sgd-1_47_dir ./vc7/libboost_regex-vc7-mt-sgd-1_47.lib boost_regex-vc7-mt-gd-1_47_dir ./vc7/boost_regex-vc7-mt-gd-1_47.lib boost_regex-vc7-mt-1_47_dir ./vc7/boost_regex-vc7-mt-1_47.lib libboost_regex-vc7-mt-1_47_dir ./vc7/libboost_regex-vc7-mt-1_47.lib libboost_regex-vc7-mt-gd-1_47_dir ./vc7/libboost_regex-vc7-mt-gd-1_47.lib -clean : libboost_regex-vc7-s-1_46_clean libboost_regex-vc7-mt-s-1_46_clean libboost_regex-vc7-sgd-1_46_clean libboost_regex-vc7-mt-sgd-1_46_clean boost_regex-vc7-mt-gd-1_46_clean boost_regex-vc7-mt-1_46_clean libboost_regex-vc7-mt-1_46_clean libboost_regex-vc7-mt-gd-1_46_clean +clean : libboost_regex-vc7-s-1_47_clean libboost_regex-vc7-mt-s-1_47_clean libboost_regex-vc7-sgd-1_47_clean libboost_regex-vc7-mt-sgd-1_47_clean boost_regex-vc7-mt-gd-1_47_clean boost_regex-vc7-mt-1_47_clean libboost_regex-vc7-mt-1_47_clean libboost_regex-vc7-mt-gd-1_47_clean install : all - copy vc7\libboost_regex-vc7-s-1_46.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-s-1_46.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_46.pdb "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_46.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_46.dll "$(MSVCDIR)\bin" - copy vc7\boost_regex-vc7-mt-gd-1_46.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_46.dll "$(MSVCDIR)\bin" - copy vc7\libboost_regex-vc7-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-s-1_47.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-s-1_47.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_47.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_47.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_47.dll "$(MSVCDIR)\bin" + copy vc7\boost_regex-vc7-mt-gd-1_47.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_47.dll "$(MSVCDIR)\bin" + copy vc7\libboost_regex-vc7-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_47.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7\$(NULL)" mkdir vc7 @@ -88,545 +88,545 @@ main_dir : ######################################################## # -# section for libboost_regex-vc7-s-1_46.lib +# section for libboost_regex-vc7-s-1_47.lib # ######################################################## -vc7/libboost_regex-vc7-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_46/ -Fdvc7/libboost_regex-vc7-s-1_46.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-s-1_47/ -Fdvc7/libboost_regex-vc7-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-s-1_46_dir : - @if not exist "vc7\libboost_regex-vc7-s-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_46 +libboost_regex-vc7-s-1_47_dir : + @if not exist "vc7\libboost_regex-vc7-s-1_47\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_47 -libboost_regex-vc7-s-1_46_clean : - del vc7\libboost_regex-vc7-s-1_46\*.obj - del vc7\libboost_regex-vc7-s-1_46\*.idb - del vc7\libboost_regex-vc7-s-1_46\*.exp - del vc7\libboost_regex-vc7-s-1_46\*.pch +libboost_regex-vc7-s-1_47_clean : + del vc7\libboost_regex-vc7-s-1_47\*.obj + del vc7\libboost_regex-vc7-s-1_47\*.idb + del vc7\libboost_regex-vc7-s-1_47\*.exp + del vc7\libboost_regex-vc7-s-1_47\*.pch -./vc7/libboost_regex-vc7-s-1_46.lib : vc7/libboost_regex-vc7-s-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/cregex.obj vc7/libboost_regex-vc7-s-1_46/fileiter.obj vc7/libboost_regex-vc7-s-1_46/icu.obj vc7/libboost_regex-vc7-s-1_46/instances.obj vc7/libboost_regex-vc7-s-1_46/posix_api.obj vc7/libboost_regex-vc7-s-1_46/regex.obj vc7/libboost_regex-vc7-s-1_46/regex_debug.obj vc7/libboost_regex-vc7-s-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_46/static_mutex.obj vc7/libboost_regex-vc7-s-1_46/usinstances.obj vc7/libboost_regex-vc7-s-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_46/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/cregex.obj vc7/libboost_regex-vc7-s-1_46/fileiter.obj vc7/libboost_regex-vc7-s-1_46/icu.obj vc7/libboost_regex-vc7-s-1_46/instances.obj vc7/libboost_regex-vc7-s-1_46/posix_api.obj vc7/libboost_regex-vc7-s-1_46/regex.obj vc7/libboost_regex-vc7-s-1_46/regex_debug.obj vc7/libboost_regex-vc7-s-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_46/static_mutex.obj vc7/libboost_regex-vc7-s-1_46/usinstances.obj vc7/libboost_regex-vc7-s-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_46/winstances.obj +./vc7/libboost_regex-vc7-s-1_47.lib : vc7/libboost_regex-vc7-s-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_47/cregex.obj vc7/libboost_regex-vc7-s-1_47/fileiter.obj vc7/libboost_regex-vc7-s-1_47/icu.obj vc7/libboost_regex-vc7-s-1_47/instances.obj vc7/libboost_regex-vc7-s-1_47/posix_api.obj vc7/libboost_regex-vc7-s-1_47/regex.obj vc7/libboost_regex-vc7-s-1_47/regex_debug.obj vc7/libboost_regex-vc7-s-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_47/static_mutex.obj vc7/libboost_regex-vc7-s-1_47/usinstances.obj vc7/libboost_regex-vc7-s-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_47/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_47.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_47/cregex.obj vc7/libboost_regex-vc7-s-1_47/fileiter.obj vc7/libboost_regex-vc7-s-1_47/icu.obj vc7/libboost_regex-vc7-s-1_47/instances.obj vc7/libboost_regex-vc7-s-1_47/posix_api.obj vc7/libboost_regex-vc7-s-1_47/regex.obj vc7/libboost_regex-vc7-s-1_47/regex_debug.obj vc7/libboost_regex-vc7-s-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_47/static_mutex.obj vc7/libboost_regex-vc7-s-1_47/usinstances.obj vc7/libboost_regex-vc7-s-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-s-1_46.lib +# section for libboost_regex-vc7-mt-s-1_47.lib # ######################################################## -vc7/libboost_regex-vc7-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_46/ -Fdvc7/libboost_regex-vc7-mt-s-1_46.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-s-1_47/ -Fdvc7/libboost_regex-vc7-mt-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-s-1_46_dir : - @if not exist "vc7\libboost_regex-vc7-mt-s-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_46 +libboost_regex-vc7-mt-s-1_47_dir : + @if not exist "vc7\libboost_regex-vc7-mt-s-1_47\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_47 -libboost_regex-vc7-mt-s-1_46_clean : - del vc7\libboost_regex-vc7-mt-s-1_46\*.obj - del vc7\libboost_regex-vc7-mt-s-1_46\*.idb - del vc7\libboost_regex-vc7-mt-s-1_46\*.exp - del vc7\libboost_regex-vc7-mt-s-1_46\*.pch +libboost_regex-vc7-mt-s-1_47_clean : + del vc7\libboost_regex-vc7-mt-s-1_47\*.obj + del vc7\libboost_regex-vc7-mt-s-1_47\*.idb + del vc7\libboost_regex-vc7-mt-s-1_47\*.exp + del vc7\libboost_regex-vc7-mt-s-1_47\*.pch -./vc7/libboost_regex-vc7-mt-s-1_46.lib : vc7/libboost_regex-vc7-mt-s-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/cregex.obj vc7/libboost_regex-vc7-mt-s-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_46/icu.obj vc7/libboost_regex-vc7-mt-s-1_46/instances.obj vc7/libboost_regex-vc7-mt-s-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_46/regex.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_46/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/cregex.obj vc7/libboost_regex-vc7-mt-s-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_46/icu.obj vc7/libboost_regex-vc7-mt-s-1_46/instances.obj vc7/libboost_regex-vc7-mt-s-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_46/regex.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_46/winstances.obj +./vc7/libboost_regex-vc7-mt-s-1_47.lib : vc7/libboost_regex-vc7-mt-s-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_47/cregex.obj vc7/libboost_regex-vc7-mt-s-1_47/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_47/icu.obj vc7/libboost_regex-vc7-mt-s-1_47/instances.obj vc7/libboost_regex-vc7-mt-s-1_47/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_47/regex.obj vc7/libboost_regex-vc7-mt-s-1_47/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_47/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_47/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_47/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_47.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_47/cregex.obj vc7/libboost_regex-vc7-mt-s-1_47/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_47/icu.obj vc7/libboost_regex-vc7-mt-s-1_47/instances.obj vc7/libboost_regex-vc7-mt-s-1_47/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_47/regex.obj vc7/libboost_regex-vc7-mt-s-1_47/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_47/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_47/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc7-sgd-1_46.lib +# section for libboost_regex-vc7-sgd-1_47.lib # ######################################################## -vc7/libboost_regex-vc7-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_46/ -Fdvc7/libboost_regex-vc7-sgd-1_46.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-sgd-1_47/ -Fdvc7/libboost_regex-vc7-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-sgd-1_46_dir : - @if not exist "vc7\libboost_regex-vc7-sgd-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_46 +libboost_regex-vc7-sgd-1_47_dir : + @if not exist "vc7\libboost_regex-vc7-sgd-1_47\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_47 -libboost_regex-vc7-sgd-1_46_clean : - del vc7\libboost_regex-vc7-sgd-1_46\*.obj - del vc7\libboost_regex-vc7-sgd-1_46\*.idb - del vc7\libboost_regex-vc7-sgd-1_46\*.exp - del vc7\libboost_regex-vc7-sgd-1_46\*.pch +libboost_regex-vc7-sgd-1_47_clean : + del vc7\libboost_regex-vc7-sgd-1_47\*.obj + del vc7\libboost_regex-vc7-sgd-1_47\*.idb + del vc7\libboost_regex-vc7-sgd-1_47\*.exp + del vc7\libboost_regex-vc7-sgd-1_47\*.pch -./vc7/libboost_regex-vc7-sgd-1_46.lib : vc7/libboost_regex-vc7-sgd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/cregex.obj vc7/libboost_regex-vc7-sgd-1_46/fileiter.obj vc7/libboost_regex-vc7-sgd-1_46/icu.obj vc7/libboost_regex-vc7-sgd-1_46/instances.obj vc7/libboost_regex-vc7-sgd-1_46/posix_api.obj vc7/libboost_regex-vc7-sgd-1_46/regex.obj vc7/libboost_regex-vc7-sgd-1_46/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_46/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_46/usinstances.obj vc7/libboost_regex-vc7-sgd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_46/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/cregex.obj vc7/libboost_regex-vc7-sgd-1_46/fileiter.obj vc7/libboost_regex-vc7-sgd-1_46/icu.obj vc7/libboost_regex-vc7-sgd-1_46/instances.obj vc7/libboost_regex-vc7-sgd-1_46/posix_api.obj vc7/libboost_regex-vc7-sgd-1_46/regex.obj vc7/libboost_regex-vc7-sgd-1_46/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_46/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_46/usinstances.obj vc7/libboost_regex-vc7-sgd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_46/winstances.obj +./vc7/libboost_regex-vc7-sgd-1_47.lib : vc7/libboost_regex-vc7-sgd-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_47/cregex.obj vc7/libboost_regex-vc7-sgd-1_47/fileiter.obj vc7/libboost_regex-vc7-sgd-1_47/icu.obj vc7/libboost_regex-vc7-sgd-1_47/instances.obj vc7/libboost_regex-vc7-sgd-1_47/posix_api.obj vc7/libboost_regex-vc7-sgd-1_47/regex.obj vc7/libboost_regex-vc7-sgd-1_47/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_47/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_47/usinstances.obj vc7/libboost_regex-vc7-sgd-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_47/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_47.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_47/cregex.obj vc7/libboost_regex-vc7-sgd-1_47/fileiter.obj vc7/libboost_regex-vc7-sgd-1_47/icu.obj vc7/libboost_regex-vc7-sgd-1_47/instances.obj vc7/libboost_regex-vc7-sgd-1_47/posix_api.obj vc7/libboost_regex-vc7-sgd-1_47/regex.obj vc7/libboost_regex-vc7-sgd-1_47/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_47/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_47/usinstances.obj vc7/libboost_regex-vc7-sgd-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgd-1_46.lib +# section for libboost_regex-vc7-mt-sgd-1_47.lib # ######################################################## -vc7/libboost_regex-vc7-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_46/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_46.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-sgd-1_47/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgd-1_46_dir : - @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_46 +libboost_regex-vc7-mt-sgd-1_47_dir : + @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_47\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_47 -libboost_regex-vc7-mt-sgd-1_46_clean : - del vc7\libboost_regex-vc7-mt-sgd-1_46\*.obj - del vc7\libboost_regex-vc7-mt-sgd-1_46\*.idb - del vc7\libboost_regex-vc7-mt-sgd-1_46\*.exp - del vc7\libboost_regex-vc7-mt-sgd-1_46\*.pch +libboost_regex-vc7-mt-sgd-1_47_clean : + del vc7\libboost_regex-vc7-mt-sgd-1_47\*.obj + del vc7\libboost_regex-vc7-mt-sgd-1_47\*.idb + del vc7\libboost_regex-vc7-mt-sgd-1_47\*.exp + del vc7\libboost_regex-vc7-mt-sgd-1_47\*.pch -./vc7/libboost_regex-vc7-mt-sgd-1_46.lib : vc7/libboost_regex-vc7-mt-sgd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_46/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_46/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_46/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_46/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_46/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_46/winstances.obj +./vc7/libboost_regex-vc7-mt-sgd-1_47.lib : vc7/libboost_regex-vc7-mt-sgd-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_47/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_47/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_47/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_47/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_47/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_47/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_47/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_47/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_47/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_47/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_47.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_47/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_47/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_47/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_47/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_47/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_47/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_47/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_47/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_47/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gd-1_46.lib +# section for boost_regex-vc7-mt-gd-1_47.lib # ######################################################## -vc7/boost_regex-vc7-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_46/ -Fdvc7/boost_regex-vc7-mt-gd-1_46.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-gd-1_47/ -Fdvc7/boost_regex-vc7-mt-gd-1_47.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gd-1_46_dir : - @if not exist "vc7\boost_regex-vc7-mt-gd-1_46\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_46 +boost_regex-vc7-mt-gd-1_47_dir : + @if not exist "vc7\boost_regex-vc7-mt-gd-1_47\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_47 -boost_regex-vc7-mt-gd-1_46_clean : - del vc7\boost_regex-vc7-mt-gd-1_46\*.obj - del vc7\boost_regex-vc7-mt-gd-1_46\*.idb - del vc7\boost_regex-vc7-mt-gd-1_46\*.exp - del vc7\boost_regex-vc7-mt-gd-1_46\*.pch +boost_regex-vc7-mt-gd-1_47_clean : + del vc7\boost_regex-vc7-mt-gd-1_47\*.obj + del vc7\boost_regex-vc7-mt-gd-1_47\*.idb + del vc7\boost_regex-vc7-mt-gd-1_47\*.exp + del vc7\boost_regex-vc7-mt-gd-1_47\*.pch -./vc7/boost_regex-vc7-mt-gd-1_46.lib : vc7/boost_regex-vc7-mt-gd-1_46/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/cregex.obj vc7/boost_regex-vc7-mt-gd-1_46/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_46/icu.obj vc7/boost_regex-vc7-mt-gd-1_46/instances.obj vc7/boost_regex-vc7-mt-gd-1_46/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_46/regex.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_46/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_46/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7/boost_regex-vc7-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_46.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_46/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/cregex.obj vc7/boost_regex-vc7-mt-gd-1_46/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_46/icu.obj vc7/boost_regex-vc7-mt-gd-1_46/instances.obj vc7/boost_regex-vc7-mt-gd-1_46/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_46/regex.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_46/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_46/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_46/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_46/winstances.obj +./vc7/boost_regex-vc7-mt-gd-1_47.lib : vc7/boost_regex-vc7-mt-gd-1_47/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_47/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_47/cregex.obj vc7/boost_regex-vc7-mt-gd-1_47/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_47/icu.obj vc7/boost_regex-vc7-mt-gd-1_47/instances.obj vc7/boost_regex-vc7-mt-gd-1_47/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_47/regex.obj vc7/boost_regex-vc7-mt-gd-1_47/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_47/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_47/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_47/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_47/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_47/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_47/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_47/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7/boost_regex-vc7-mt-gd-1_47.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_47.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_47/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_47/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_47/cregex.obj vc7/boost_regex-vc7-mt-gd-1_47/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_47/icu.obj vc7/boost_regex-vc7-mt-gd-1_47/instances.obj vc7/boost_regex-vc7-mt-gd-1_47/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_47/regex.obj vc7/boost_regex-vc7-mt-gd-1_47/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_47/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_47/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_47/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_47/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_47/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_47/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_47/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-1_46.lib +# section for boost_regex-vc7-mt-1_47.lib # ######################################################## -vc7/boost_regex-vc7-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_46/ -Fdvc7/boost_regex-vc7-mt-1_46.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/boost_regex-vc7-mt-1_47/ -Fdvc7/boost_regex-vc7-mt-1_47.pdb ../src/winstances.cpp -boost_regex-vc7-mt-1_46_dir : - @if not exist "vc7\boost_regex-vc7-mt-1_46\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_46 +boost_regex-vc7-mt-1_47_dir : + @if not exist "vc7\boost_regex-vc7-mt-1_47\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_47 -boost_regex-vc7-mt-1_46_clean : - del vc7\boost_regex-vc7-mt-1_46\*.obj - del vc7\boost_regex-vc7-mt-1_46\*.idb - del vc7\boost_regex-vc7-mt-1_46\*.exp - del vc7\boost_regex-vc7-mt-1_46\*.pch +boost_regex-vc7-mt-1_47_clean : + del vc7\boost_regex-vc7-mt-1_47\*.obj + del vc7\boost_regex-vc7-mt-1_47\*.idb + del vc7\boost_regex-vc7-mt-1_47\*.exp + del vc7\boost_regex-vc7-mt-1_47\*.pch -./vc7/boost_regex-vc7-mt-1_46.lib : vc7/boost_regex-vc7-mt-1_46/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/cregex.obj vc7/boost_regex-vc7-mt-1_46/fileiter.obj vc7/boost_regex-vc7-mt-1_46/icu.obj vc7/boost_regex-vc7-mt-1_46/instances.obj vc7/boost_regex-vc7-mt-1_46/posix_api.obj vc7/boost_regex-vc7-mt-1_46/regex.obj vc7/boost_regex-vc7-mt-1_46/regex_debug.obj vc7/boost_regex-vc7-mt-1_46/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_46/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_46/static_mutex.obj vc7/boost_regex-vc7-mt-1_46/usinstances.obj vc7/boost_regex-vc7-mt-1_46/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7/boost_regex-vc7-mt-1_46.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_46.dll" /implib:"vc7/boost_regex-vc7-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_46/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/cregex.obj vc7/boost_regex-vc7-mt-1_46/fileiter.obj vc7/boost_regex-vc7-mt-1_46/icu.obj vc7/boost_regex-vc7-mt-1_46/instances.obj vc7/boost_regex-vc7-mt-1_46/posix_api.obj vc7/boost_regex-vc7-mt-1_46/regex.obj vc7/boost_regex-vc7-mt-1_46/regex_debug.obj vc7/boost_regex-vc7-mt-1_46/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_46/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_46/static_mutex.obj vc7/boost_regex-vc7-mt-1_46/usinstances.obj vc7/boost_regex-vc7-mt-1_46/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_46/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_46/winstances.obj +./vc7/boost_regex-vc7-mt-1_47.lib : vc7/boost_regex-vc7-mt-1_47/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_47/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_47/cregex.obj vc7/boost_regex-vc7-mt-1_47/fileiter.obj vc7/boost_regex-vc7-mt-1_47/icu.obj vc7/boost_regex-vc7-mt-1_47/instances.obj vc7/boost_regex-vc7-mt-1_47/posix_api.obj vc7/boost_regex-vc7-mt-1_47/regex.obj vc7/boost_regex-vc7-mt-1_47/regex_debug.obj vc7/boost_regex-vc7-mt-1_47/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_47/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_47/static_mutex.obj vc7/boost_regex-vc7-mt-1_47/usinstances.obj vc7/boost_regex-vc7-mt-1_47/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_47/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_47/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc7/boost_regex-vc7-mt-1_47.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_47.dll" /implib:"vc7/boost_regex-vc7-mt-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_47/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_47/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_47/cregex.obj vc7/boost_regex-vc7-mt-1_47/fileiter.obj vc7/boost_regex-vc7-mt-1_47/icu.obj vc7/boost_regex-vc7-mt-1_47/instances.obj vc7/boost_regex-vc7-mt-1_47/posix_api.obj vc7/boost_regex-vc7-mt-1_47/regex.obj vc7/boost_regex-vc7-mt-1_47/regex_debug.obj vc7/boost_regex-vc7-mt-1_47/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_47/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_47/static_mutex.obj vc7/boost_regex-vc7-mt-1_47/usinstances.obj vc7/boost_regex-vc7-mt-1_47/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_47/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_47/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-1_46.lib +# section for libboost_regex-vc7-mt-1_47.lib # ######################################################## -vc7/libboost_regex-vc7-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_46/ -Fdvc7/libboost_regex-vc7-mt-1_46.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-1_47/ -Fdvc7/libboost_regex-vc7-mt-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-1_46_dir : - @if not exist "vc7\libboost_regex-vc7-mt-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_46 +libboost_regex-vc7-mt-1_47_dir : + @if not exist "vc7\libboost_regex-vc7-mt-1_47\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_47 -libboost_regex-vc7-mt-1_46_clean : - del vc7\libboost_regex-vc7-mt-1_46\*.obj - del vc7\libboost_regex-vc7-mt-1_46\*.idb - del vc7\libboost_regex-vc7-mt-1_46\*.exp - del vc7\libboost_regex-vc7-mt-1_46\*.pch +libboost_regex-vc7-mt-1_47_clean : + del vc7\libboost_regex-vc7-mt-1_47\*.obj + del vc7\libboost_regex-vc7-mt-1_47\*.idb + del vc7\libboost_regex-vc7-mt-1_47\*.exp + del vc7\libboost_regex-vc7-mt-1_47\*.pch -./vc7/libboost_regex-vc7-mt-1_46.lib : vc7/libboost_regex-vc7-mt-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/cregex.obj vc7/libboost_regex-vc7-mt-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-1_46/icu.obj vc7/libboost_regex-vc7-mt-1_46/instances.obj vc7/libboost_regex-vc7-mt-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-1_46/regex.obj vc7/libboost_regex-vc7-mt-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_46/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/cregex.obj vc7/libboost_regex-vc7-mt-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-1_46/icu.obj vc7/libboost_regex-vc7-mt-1_46/instances.obj vc7/libboost_regex-vc7-mt-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-1_46/regex.obj vc7/libboost_regex-vc7-mt-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_46/winstances.obj +./vc7/libboost_regex-vc7-mt-1_47.lib : vc7/libboost_regex-vc7-mt-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_47/cregex.obj vc7/libboost_regex-vc7-mt-1_47/fileiter.obj vc7/libboost_regex-vc7-mt-1_47/icu.obj vc7/libboost_regex-vc7-mt-1_47/instances.obj vc7/libboost_regex-vc7-mt-1_47/posix_api.obj vc7/libboost_regex-vc7-mt-1_47/regex.obj vc7/libboost_regex-vc7-mt-1_47/regex_debug.obj vc7/libboost_regex-vc7-mt-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_47/static_mutex.obj vc7/libboost_regex-vc7-mt-1_47/usinstances.obj vc7/libboost_regex-vc7-mt-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_47/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_47.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_47/cregex.obj vc7/libboost_regex-vc7-mt-1_47/fileiter.obj vc7/libboost_regex-vc7-mt-1_47/icu.obj vc7/libboost_regex-vc7-mt-1_47/instances.obj vc7/libboost_regex-vc7-mt-1_47/posix_api.obj vc7/libboost_regex-vc7-mt-1_47/regex.obj vc7/libboost_regex-vc7-mt-1_47/regex_debug.obj vc7/libboost_regex-vc7-mt-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_47/static_mutex.obj vc7/libboost_regex-vc7-mt-1_47/usinstances.obj vc7/libboost_regex-vc7-mt-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gd-1_46.lib +# section for libboost_regex-vc7-mt-gd-1_47.lib # ######################################################## -vc7/libboost_regex-vc7-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_46/ -Fdvc7/libboost_regex-vc7-mt-gd-1_46.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc7/libboost_regex-vc7-mt-gd-1_47/ -Fdvc7/libboost_regex-vc7-mt-gd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gd-1_46_dir : - @if not exist "vc7\libboost_regex-vc7-mt-gd-1_46\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_46 +libboost_regex-vc7-mt-gd-1_47_dir : + @if not exist "vc7\libboost_regex-vc7-mt-gd-1_47\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_47 -libboost_regex-vc7-mt-gd-1_46_clean : - del vc7\libboost_regex-vc7-mt-gd-1_46\*.obj - del vc7\libboost_regex-vc7-mt-gd-1_46\*.idb - del vc7\libboost_regex-vc7-mt-gd-1_46\*.exp - del vc7\libboost_regex-vc7-mt-gd-1_46\*.pch +libboost_regex-vc7-mt-gd-1_47_clean : + del vc7\libboost_regex-vc7-mt-gd-1_47\*.obj + del vc7\libboost_regex-vc7-mt-gd-1_47\*.idb + del vc7\libboost_regex-vc7-mt-gd-1_47\*.exp + del vc7\libboost_regex-vc7-mt-gd-1_47\*.pch -./vc7/libboost_regex-vc7-mt-gd-1_46.lib : vc7/libboost_regex-vc7-mt-gd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_46/icu.obj vc7/libboost_regex-vc7-mt-gd-1_46/instances.obj vc7/libboost_regex-vc7-mt-gd-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_46/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_46.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_46/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_46/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_46/icu.obj vc7/libboost_regex-vc7-mt-gd-1_46/instances.obj vc7/libboost_regex-vc7-mt-gd-1_46/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_46/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_46/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_46/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_46/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_46/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_46/winstances.obj +./vc7/libboost_regex-vc7-mt-gd-1_47.lib : vc7/libboost_regex-vc7-mt-gd-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_47/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_47/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_47/icu.obj vc7/libboost_regex-vc7-mt-gd-1_47/instances.obj vc7/libboost_regex-vc7-mt-gd-1_47/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_47/regex.obj vc7/libboost_regex-vc7-mt-gd-1_47/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_47/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_47/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_47/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_47.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_47/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_47/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_47/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_47/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_47/icu.obj vc7/libboost_regex-vc7-mt-gd-1_47/instances.obj vc7/libboost_regex-vc7-mt-gd-1_47/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_47/regex.obj vc7/libboost_regex-vc7-mt-gd-1_47/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_47/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_47/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_47/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_47/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_47/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_47/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_47/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_47/winstances.obj diff --git a/build/vc71-stlport.mak b/build/vc71-stlport.mak index 9f748bd9..1357a015 100644 --- a/build/vc71-stlport.mak +++ b/build/vc71-stlport.mak @@ -62,22 +62,22 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc71-mt-sp-1_46_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_46.lib boost_regex-vc71-mt-p-1_46_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_46.lib libboost_regex-vc71-mt-p-1_46_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_46.lib boost_regex-vc71-mt-gdp-1_46_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_46.lib libboost_regex-vc71-mt-sgdp-1_46_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.lib libboost_regex-vc71-mt-gdp-1_46_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46.lib +all : main_dir libboost_regex-vc71-mt-sp-1_47_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_47.lib boost_regex-vc71-mt-p-1_47_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_47.lib libboost_regex-vc71-mt-p-1_47_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_47.lib boost_regex-vc71-mt-gdp-1_47_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_47.lib libboost_regex-vc71-mt-sgdp-1_47_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.lib libboost_regex-vc71-mt-gdp-1_47_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47.lib -clean : libboost_regex-vc71-mt-sp-1_46_clean boost_regex-vc71-mt-p-1_46_clean libboost_regex-vc71-mt-p-1_46_clean boost_regex-vc71-mt-gdp-1_46_clean libboost_regex-vc71-mt-sgdp-1_46_clean libboost_regex-vc71-mt-gdp-1_46_clean +clean : libboost_regex-vc71-mt-sp-1_47_clean boost_regex-vc71-mt-p-1_47_clean libboost_regex-vc71-mt-p-1_47_clean boost_regex-vc71-mt-gdp-1_47_clean libboost_regex-vc71-mt-sgdp-1_47_clean libboost_regex-vc71-mt-gdp-1_47_clean install : stlport_check all - copy vc71-stlport\libboost_regex-vc71-mt-sp-1_46.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_46.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_46.dll "$(MSVCDIR)\bin" - copy vc71-stlport\libboost_regex-vc71-mt-p-1_46.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_46.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_46.dll "$(MSVCDIR)\bin" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_46.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_46.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sp-1_47.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_47.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_47.dll "$(MSVCDIR)\bin" + copy vc71-stlport\libboost_regex-vc71-mt-p-1_47.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_47.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_47.dll "$(MSVCDIR)\bin" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_47.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_47.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_47.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_47.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_47.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71-stlport\$(NULL)" mkdir vc71-stlport @@ -88,409 +88,409 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc71-mt-sp-1_46.lib +# section for libboost_regex-vc71-mt-sp-1_47.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_46.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sp-1_46_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_46\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_46 +libboost_regex-vc71-mt-sp-1_47_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_47\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_47 -libboost_regex-vc71-mt-sp-1_46_clean : - del vc71-stlport\libboost_regex-vc71-mt-sp-1_46\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sp-1_46\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sp-1_46\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sp-1_46\*.pch +libboost_regex-vc71-mt-sp-1_47_clean : + del vc71-stlport\libboost_regex-vc71-mt-sp-1_47\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sp-1_47\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sp-1_47\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sp-1_47\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sp-1_46.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_46.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_46/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sp-1_47.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_47/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_47.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_47/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-p-1_46.lib +# section for boost_regex-vc71-mt-p-1_47.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_46.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /I"$(STLPORT_PATH)\stlport" /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_47.pdb ../src/winstances.cpp -boost_regex-vc71-mt-p-1_46_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_46\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_46 +boost_regex-vc71-mt-p-1_47_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_47\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_47 -boost_regex-vc71-mt-p-1_46_clean : - del vc71-stlport\boost_regex-vc71-mt-p-1_46\*.obj - del vc71-stlport\boost_regex-vc71-mt-p-1_46\*.idb - del vc71-stlport\boost_regex-vc71-mt-p-1_46\*.exp - del vc71-stlport\boost_regex-vc71-mt-p-1_46\*.pch +boost_regex-vc71-mt-p-1_47_clean : + del vc71-stlport\boost_regex-vc71-mt-p-1_47\*.obj + del vc71-stlport\boost_regex-vc71-mt-p-1_47\*.idb + del vc71-stlport\boost_regex-vc71-mt-p-1_47\*.exp + del vc71-stlport\boost_regex-vc71-mt-p-1_47\*.pch -./vc71-stlport/boost_regex-vc71-mt-p-1_46.lib : vc71-stlport/boost_regex-vc71-mt-p-1_46/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71-stlport/boost_regex-vc71-mt-p-1_46.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_46.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_46/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_46/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-p-1_47.lib : vc71-stlport/boost_regex-vc71-mt-p-1_47/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71-stlport/boost_regex-vc71-mt-p-1_47.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_47.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_47/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-p-1_46.lib +# section for libboost_regex-vc71-mt-p-1_47.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-p-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_46.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-p-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-p-1_46_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_46\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_46 +libboost_regex-vc71-mt-p-1_47_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_47\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_47 -libboost_regex-vc71-mt-p-1_46_clean : - del vc71-stlport\libboost_regex-vc71-mt-p-1_46\*.obj - del vc71-stlport\libboost_regex-vc71-mt-p-1_46\*.idb - del vc71-stlport\libboost_regex-vc71-mt-p-1_46\*.exp - del vc71-stlport\libboost_regex-vc71-mt-p-1_46\*.pch +libboost_regex-vc71-mt-p-1_47_clean : + del vc71-stlport\libboost_regex-vc71-mt-p-1_47\*.obj + del vc71-stlport\libboost_regex-vc71-mt-p-1_47\*.idb + del vc71-stlport\libboost_regex-vc71-mt-p-1_47\*.exp + del vc71-stlport\libboost_regex-vc71-mt-p-1_47\*.pch -./vc71-stlport/libboost_regex-vc71-mt-p-1_46.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_46.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_46/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-p-1_47.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_47/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_47.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_47/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gdp-1_46.lib +# section for boost_regex-vc71-mt-gdp-1_47.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_DYN_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/boost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gdp-1_46_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_46\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_46 +boost_regex-vc71-mt-gdp-1_47_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_47\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_47 -boost_regex-vc71-mt-gdp-1_46_clean : - del vc71-stlport\boost_regex-vc71-mt-gdp-1_46\*.obj - del vc71-stlport\boost_regex-vc71-mt-gdp-1_46\*.idb - del vc71-stlport\boost_regex-vc71-mt-gdp-1_46\*.exp - del vc71-stlport\boost_regex-vc71-mt-gdp-1_46\*.pch +boost_regex-vc71-mt-gdp-1_47_clean : + del vc71-stlport\boost_regex-vc71-mt-gdp-1_47\*.obj + del vc71-stlport\boost_regex-vc71-mt-gdp-1_47\*.idb + del vc71-stlport\boost_regex-vc71-mt-gdp-1_47\*.exp + del vc71-stlport\boost_regex-vc71-mt-gdp-1_47\*.pch -./vc71-stlport/boost_regex-vc71-mt-gdp-1_46.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71-stlport/boost_regex-vc71-mt-gdp-1_46.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_46.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_46/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-gdp-1_47.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_47/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71-stlport/boost_regex-vc71-mt-gdp-1_47.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_47.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_47/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgdp-1_46.lib +# section for libboost_regex-vc71-mt-sgdp-1_47.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgdp-1_46_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46 +libboost_regex-vc71-mt-sgdp-1_47_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_47\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_47 -libboost_regex-vc71-mt-sgdp-1_46_clean : - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_46\*.pch +libboost_regex-vc71-mt-sgdp-1_47_clean : + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_47\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_47\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_47\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_47\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_46/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gdp-1_46.lib +# section for libboost_regex-vc71-mt-gdp-1_47.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_46.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I"$(STLPORT_PATH)\stlport" /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gdp-1_46_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_46 +libboost_regex-vc71-mt-gdp-1_47_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_47\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_47 -libboost_regex-vc71-mt-gdp-1_46_clean : - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\*.obj - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\*.idb - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\*.exp - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_46\*.pch +libboost_regex-vc71-mt-gdp-1_47_clean : + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_47\*.obj + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_47\*.idb + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_47\*.exp + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_47\*.pch -./vc71-stlport/libboost_regex-vc71-mt-gdp-1_46.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_46.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_46/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-gdp-1_47.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_47.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_47/winstances.obj diff --git a/build/vc71.mak b/build/vc71.mak index 17e555c5..7f0953fc 100644 --- a/build/vc71.mak +++ b/build/vc71.mak @@ -62,25 +62,25 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc71-s-1_46_dir ./vc71/libboost_regex-vc71-s-1_46.lib libboost_regex-vc71-mt-s-1_46_dir ./vc71/libboost_regex-vc71-mt-s-1_46.lib libboost_regex-vc71-sgd-1_46_dir ./vc71/libboost_regex-vc71-sgd-1_46.lib libboost_regex-vc71-mt-sgd-1_46_dir ./vc71/libboost_regex-vc71-mt-sgd-1_46.lib boost_regex-vc71-mt-gd-1_46_dir ./vc71/boost_regex-vc71-mt-gd-1_46.lib boost_regex-vc71-mt-1_46_dir ./vc71/boost_regex-vc71-mt-1_46.lib libboost_regex-vc71-mt-1_46_dir ./vc71/libboost_regex-vc71-mt-1_46.lib libboost_regex-vc71-mt-gd-1_46_dir ./vc71/libboost_regex-vc71-mt-gd-1_46.lib +all : main_dir libboost_regex-vc71-s-1_47_dir ./vc71/libboost_regex-vc71-s-1_47.lib libboost_regex-vc71-mt-s-1_47_dir ./vc71/libboost_regex-vc71-mt-s-1_47.lib libboost_regex-vc71-sgd-1_47_dir ./vc71/libboost_regex-vc71-sgd-1_47.lib libboost_regex-vc71-mt-sgd-1_47_dir ./vc71/libboost_regex-vc71-mt-sgd-1_47.lib boost_regex-vc71-mt-gd-1_47_dir ./vc71/boost_regex-vc71-mt-gd-1_47.lib boost_regex-vc71-mt-1_47_dir ./vc71/boost_regex-vc71-mt-1_47.lib libboost_regex-vc71-mt-1_47_dir ./vc71/libboost_regex-vc71-mt-1_47.lib libboost_regex-vc71-mt-gd-1_47_dir ./vc71/libboost_regex-vc71-mt-gd-1_47.lib -clean : libboost_regex-vc71-s-1_46_clean libboost_regex-vc71-mt-s-1_46_clean libboost_regex-vc71-sgd-1_46_clean libboost_regex-vc71-mt-sgd-1_46_clean boost_regex-vc71-mt-gd-1_46_clean boost_regex-vc71-mt-1_46_clean libboost_regex-vc71-mt-1_46_clean libboost_regex-vc71-mt-gd-1_46_clean +clean : libboost_regex-vc71-s-1_47_clean libboost_regex-vc71-mt-s-1_47_clean libboost_regex-vc71-sgd-1_47_clean libboost_regex-vc71-mt-sgd-1_47_clean boost_regex-vc71-mt-gd-1_47_clean boost_regex-vc71-mt-1_47_clean libboost_regex-vc71-mt-1_47_clean libboost_regex-vc71-mt-gd-1_47_clean install : all - copy vc71\libboost_regex-vc71-s-1_46.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-s-1_46.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_46.pdb "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_46.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_46.dll "$(MSVCDIR)\bin" - copy vc71\boost_regex-vc71-mt-gd-1_46.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_46.dll "$(MSVCDIR)\bin" - copy vc71\libboost_regex-vc71-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-s-1_47.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-s-1_47.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_47.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_47.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_47.dll "$(MSVCDIR)\bin" + copy vc71\boost_regex-vc71-mt-gd-1_47.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_47.dll "$(MSVCDIR)\bin" + copy vc71\libboost_regex-vc71-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_47.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71\$(NULL)" mkdir vc71 @@ -88,545 +88,545 @@ main_dir : ######################################################## # -# section for libboost_regex-vc71-s-1_46.lib +# section for libboost_regex-vc71-s-1_47.lib # ######################################################## -vc71/libboost_regex-vc71-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_46/ -Fdvc71/libboost_regex-vc71-s-1_46.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-s-1_47/ -Fdvc71/libboost_regex-vc71-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-s-1_46_dir : - @if not exist "vc71\libboost_regex-vc71-s-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_46 +libboost_regex-vc71-s-1_47_dir : + @if not exist "vc71\libboost_regex-vc71-s-1_47\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_47 -libboost_regex-vc71-s-1_46_clean : - del vc71\libboost_regex-vc71-s-1_46\*.obj - del vc71\libboost_regex-vc71-s-1_46\*.idb - del vc71\libboost_regex-vc71-s-1_46\*.exp - del vc71\libboost_regex-vc71-s-1_46\*.pch +libboost_regex-vc71-s-1_47_clean : + del vc71\libboost_regex-vc71-s-1_47\*.obj + del vc71\libboost_regex-vc71-s-1_47\*.idb + del vc71\libboost_regex-vc71-s-1_47\*.exp + del vc71\libboost_regex-vc71-s-1_47\*.pch -./vc71/libboost_regex-vc71-s-1_46.lib : vc71/libboost_regex-vc71-s-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/cregex.obj vc71/libboost_regex-vc71-s-1_46/fileiter.obj vc71/libboost_regex-vc71-s-1_46/icu.obj vc71/libboost_regex-vc71-s-1_46/instances.obj vc71/libboost_regex-vc71-s-1_46/posix_api.obj vc71/libboost_regex-vc71-s-1_46/regex.obj vc71/libboost_regex-vc71-s-1_46/regex_debug.obj vc71/libboost_regex-vc71-s-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_46/static_mutex.obj vc71/libboost_regex-vc71-s-1_46/usinstances.obj vc71/libboost_regex-vc71-s-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_46/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/cregex.obj vc71/libboost_regex-vc71-s-1_46/fileiter.obj vc71/libboost_regex-vc71-s-1_46/icu.obj vc71/libboost_regex-vc71-s-1_46/instances.obj vc71/libboost_regex-vc71-s-1_46/posix_api.obj vc71/libboost_regex-vc71-s-1_46/regex.obj vc71/libboost_regex-vc71-s-1_46/regex_debug.obj vc71/libboost_regex-vc71-s-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_46/static_mutex.obj vc71/libboost_regex-vc71-s-1_46/usinstances.obj vc71/libboost_regex-vc71-s-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_46/winstances.obj +./vc71/libboost_regex-vc71-s-1_47.lib : vc71/libboost_regex-vc71-s-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_47/cregex.obj vc71/libboost_regex-vc71-s-1_47/fileiter.obj vc71/libboost_regex-vc71-s-1_47/icu.obj vc71/libboost_regex-vc71-s-1_47/instances.obj vc71/libboost_regex-vc71-s-1_47/posix_api.obj vc71/libboost_regex-vc71-s-1_47/regex.obj vc71/libboost_regex-vc71-s-1_47/regex_debug.obj vc71/libboost_regex-vc71-s-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_47/static_mutex.obj vc71/libboost_regex-vc71-s-1_47/usinstances.obj vc71/libboost_regex-vc71-s-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_47/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_47.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_47/cregex.obj vc71/libboost_regex-vc71-s-1_47/fileiter.obj vc71/libboost_regex-vc71-s-1_47/icu.obj vc71/libboost_regex-vc71-s-1_47/instances.obj vc71/libboost_regex-vc71-s-1_47/posix_api.obj vc71/libboost_regex-vc71-s-1_47/regex.obj vc71/libboost_regex-vc71-s-1_47/regex_debug.obj vc71/libboost_regex-vc71-s-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_47/static_mutex.obj vc71/libboost_regex-vc71-s-1_47/usinstances.obj vc71/libboost_regex-vc71-s-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-s-1_46.lib +# section for libboost_regex-vc71-mt-s-1_47.lib # ######################################################## -vc71/libboost_regex-vc71-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_46/ -Fdvc71/libboost_regex-vc71-mt-s-1_46.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-s-1_47/ -Fdvc71/libboost_regex-vc71-mt-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-s-1_46_dir : - @if not exist "vc71\libboost_regex-vc71-mt-s-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_46 +libboost_regex-vc71-mt-s-1_47_dir : + @if not exist "vc71\libboost_regex-vc71-mt-s-1_47\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_47 -libboost_regex-vc71-mt-s-1_46_clean : - del vc71\libboost_regex-vc71-mt-s-1_46\*.obj - del vc71\libboost_regex-vc71-mt-s-1_46\*.idb - del vc71\libboost_regex-vc71-mt-s-1_46\*.exp - del vc71\libboost_regex-vc71-mt-s-1_46\*.pch +libboost_regex-vc71-mt-s-1_47_clean : + del vc71\libboost_regex-vc71-mt-s-1_47\*.obj + del vc71\libboost_regex-vc71-mt-s-1_47\*.idb + del vc71\libboost_regex-vc71-mt-s-1_47\*.exp + del vc71\libboost_regex-vc71-mt-s-1_47\*.pch -./vc71/libboost_regex-vc71-mt-s-1_46.lib : vc71/libboost_regex-vc71-mt-s-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/cregex.obj vc71/libboost_regex-vc71-mt-s-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_46/icu.obj vc71/libboost_regex-vc71-mt-s-1_46/instances.obj vc71/libboost_regex-vc71-mt-s-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_46/regex.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_46/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/cregex.obj vc71/libboost_regex-vc71-mt-s-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_46/icu.obj vc71/libboost_regex-vc71-mt-s-1_46/instances.obj vc71/libboost_regex-vc71-mt-s-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_46/regex.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_46/winstances.obj +./vc71/libboost_regex-vc71-mt-s-1_47.lib : vc71/libboost_regex-vc71-mt-s-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_47/cregex.obj vc71/libboost_regex-vc71-mt-s-1_47/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_47/icu.obj vc71/libboost_regex-vc71-mt-s-1_47/instances.obj vc71/libboost_regex-vc71-mt-s-1_47/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_47/regex.obj vc71/libboost_regex-vc71-mt-s-1_47/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_47/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_47/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_47/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_47.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_47/cregex.obj vc71/libboost_regex-vc71-mt-s-1_47/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_47/icu.obj vc71/libboost_regex-vc71-mt-s-1_47/instances.obj vc71/libboost_regex-vc71-mt-s-1_47/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_47/regex.obj vc71/libboost_regex-vc71-mt-s-1_47/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_47/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_47/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc71-sgd-1_46.lib +# section for libboost_regex-vc71-sgd-1_47.lib # ######################################################## -vc71/libboost_regex-vc71-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_46/ -Fdvc71/libboost_regex-vc71-sgd-1_46.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-sgd-1_47/ -Fdvc71/libboost_regex-vc71-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-sgd-1_46_dir : - @if not exist "vc71\libboost_regex-vc71-sgd-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_46 +libboost_regex-vc71-sgd-1_47_dir : + @if not exist "vc71\libboost_regex-vc71-sgd-1_47\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_47 -libboost_regex-vc71-sgd-1_46_clean : - del vc71\libboost_regex-vc71-sgd-1_46\*.obj - del vc71\libboost_regex-vc71-sgd-1_46\*.idb - del vc71\libboost_regex-vc71-sgd-1_46\*.exp - del vc71\libboost_regex-vc71-sgd-1_46\*.pch +libboost_regex-vc71-sgd-1_47_clean : + del vc71\libboost_regex-vc71-sgd-1_47\*.obj + del vc71\libboost_regex-vc71-sgd-1_47\*.idb + del vc71\libboost_regex-vc71-sgd-1_47\*.exp + del vc71\libboost_regex-vc71-sgd-1_47\*.pch -./vc71/libboost_regex-vc71-sgd-1_46.lib : vc71/libboost_regex-vc71-sgd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/cregex.obj vc71/libboost_regex-vc71-sgd-1_46/fileiter.obj vc71/libboost_regex-vc71-sgd-1_46/icu.obj vc71/libboost_regex-vc71-sgd-1_46/instances.obj vc71/libboost_regex-vc71-sgd-1_46/posix_api.obj vc71/libboost_regex-vc71-sgd-1_46/regex.obj vc71/libboost_regex-vc71-sgd-1_46/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_46/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_46/usinstances.obj vc71/libboost_regex-vc71-sgd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_46/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/cregex.obj vc71/libboost_regex-vc71-sgd-1_46/fileiter.obj vc71/libboost_regex-vc71-sgd-1_46/icu.obj vc71/libboost_regex-vc71-sgd-1_46/instances.obj vc71/libboost_regex-vc71-sgd-1_46/posix_api.obj vc71/libboost_regex-vc71-sgd-1_46/regex.obj vc71/libboost_regex-vc71-sgd-1_46/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_46/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_46/usinstances.obj vc71/libboost_regex-vc71-sgd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_46/winstances.obj +./vc71/libboost_regex-vc71-sgd-1_47.lib : vc71/libboost_regex-vc71-sgd-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_47/cregex.obj vc71/libboost_regex-vc71-sgd-1_47/fileiter.obj vc71/libboost_regex-vc71-sgd-1_47/icu.obj vc71/libboost_regex-vc71-sgd-1_47/instances.obj vc71/libboost_regex-vc71-sgd-1_47/posix_api.obj vc71/libboost_regex-vc71-sgd-1_47/regex.obj vc71/libboost_regex-vc71-sgd-1_47/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_47/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_47/usinstances.obj vc71/libboost_regex-vc71-sgd-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_47/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_47.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_47/cregex.obj vc71/libboost_regex-vc71-sgd-1_47/fileiter.obj vc71/libboost_regex-vc71-sgd-1_47/icu.obj vc71/libboost_regex-vc71-sgd-1_47/instances.obj vc71/libboost_regex-vc71-sgd-1_47/posix_api.obj vc71/libboost_regex-vc71-sgd-1_47/regex.obj vc71/libboost_regex-vc71-sgd-1_47/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_47/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_47/usinstances.obj vc71/libboost_regex-vc71-sgd-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgd-1_46.lib +# section for libboost_regex-vc71-mt-sgd-1_47.lib # ######################################################## -vc71/libboost_regex-vc71-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_46/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_46.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-sgd-1_47/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgd-1_46_dir : - @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_46 +libboost_regex-vc71-mt-sgd-1_47_dir : + @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_47\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_47 -libboost_regex-vc71-mt-sgd-1_46_clean : - del vc71\libboost_regex-vc71-mt-sgd-1_46\*.obj - del vc71\libboost_regex-vc71-mt-sgd-1_46\*.idb - del vc71\libboost_regex-vc71-mt-sgd-1_46\*.exp - del vc71\libboost_regex-vc71-mt-sgd-1_46\*.pch +libboost_regex-vc71-mt-sgd-1_47_clean : + del vc71\libboost_regex-vc71-mt-sgd-1_47\*.obj + del vc71\libboost_regex-vc71-mt-sgd-1_47\*.idb + del vc71\libboost_regex-vc71-mt-sgd-1_47\*.exp + del vc71\libboost_regex-vc71-mt-sgd-1_47\*.pch -./vc71/libboost_regex-vc71-mt-sgd-1_46.lib : vc71/libboost_regex-vc71-mt-sgd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_46/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_46/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_46/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_46/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_46/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_46/winstances.obj +./vc71/libboost_regex-vc71-mt-sgd-1_47.lib : vc71/libboost_regex-vc71-mt-sgd-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_47/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_47/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_47/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_47/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_47/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_47/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_47/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_47/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_47/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_47/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_47.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_47/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_47/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_47/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_47/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_47/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_47/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_47/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_47/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_47/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gd-1_46.lib +# section for boost_regex-vc71-mt-gd-1_47.lib # ######################################################## -vc71/boost_regex-vc71-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_46/ -Fdvc71/boost_regex-vc71-mt-gd-1_46.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-gd-1_47/ -Fdvc71/boost_regex-vc71-mt-gd-1_47.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gd-1_46_dir : - @if not exist "vc71\boost_regex-vc71-mt-gd-1_46\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_46 +boost_regex-vc71-mt-gd-1_47_dir : + @if not exist "vc71\boost_regex-vc71-mt-gd-1_47\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_47 -boost_regex-vc71-mt-gd-1_46_clean : - del vc71\boost_regex-vc71-mt-gd-1_46\*.obj - del vc71\boost_regex-vc71-mt-gd-1_46\*.idb - del vc71\boost_regex-vc71-mt-gd-1_46\*.exp - del vc71\boost_regex-vc71-mt-gd-1_46\*.pch +boost_regex-vc71-mt-gd-1_47_clean : + del vc71\boost_regex-vc71-mt-gd-1_47\*.obj + del vc71\boost_regex-vc71-mt-gd-1_47\*.idb + del vc71\boost_regex-vc71-mt-gd-1_47\*.exp + del vc71\boost_regex-vc71-mt-gd-1_47\*.pch -./vc71/boost_regex-vc71-mt-gd-1_46.lib : vc71/boost_regex-vc71-mt-gd-1_46/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/cregex.obj vc71/boost_regex-vc71-mt-gd-1_46/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_46/icu.obj vc71/boost_regex-vc71-mt-gd-1_46/instances.obj vc71/boost_regex-vc71-mt-gd-1_46/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_46/regex.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_46/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_46/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71/boost_regex-vc71-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_46.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_46/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/cregex.obj vc71/boost_regex-vc71-mt-gd-1_46/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_46/icu.obj vc71/boost_regex-vc71-mt-gd-1_46/instances.obj vc71/boost_regex-vc71-mt-gd-1_46/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_46/regex.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_46/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_46/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_46/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_46/winstances.obj +./vc71/boost_regex-vc71-mt-gd-1_47.lib : vc71/boost_regex-vc71-mt-gd-1_47/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_47/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_47/cregex.obj vc71/boost_regex-vc71-mt-gd-1_47/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_47/icu.obj vc71/boost_regex-vc71-mt-gd-1_47/instances.obj vc71/boost_regex-vc71-mt-gd-1_47/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_47/regex.obj vc71/boost_regex-vc71-mt-gd-1_47/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_47/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_47/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_47/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_47/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_47/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_47/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_47/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71/boost_regex-vc71-mt-gd-1_47.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_47.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_47/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_47/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_47/cregex.obj vc71/boost_regex-vc71-mt-gd-1_47/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_47/icu.obj vc71/boost_regex-vc71-mt-gd-1_47/instances.obj vc71/boost_regex-vc71-mt-gd-1_47/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_47/regex.obj vc71/boost_regex-vc71-mt-gd-1_47/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_47/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_47/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_47/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_47/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_47/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_47/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_47/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-1_46.lib +# section for boost_regex-vc71-mt-1_47.lib # ######################################################## -vc71/boost_regex-vc71-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_46/ -Fdvc71/boost_regex-vc71-mt-1_46.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/boost_regex-vc71-mt-1_47/ -Fdvc71/boost_regex-vc71-mt-1_47.pdb ../src/winstances.cpp -boost_regex-vc71-mt-1_46_dir : - @if not exist "vc71\boost_regex-vc71-mt-1_46\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_46 +boost_regex-vc71-mt-1_47_dir : + @if not exist "vc71\boost_regex-vc71-mt-1_47\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_47 -boost_regex-vc71-mt-1_46_clean : - del vc71\boost_regex-vc71-mt-1_46\*.obj - del vc71\boost_regex-vc71-mt-1_46\*.idb - del vc71\boost_regex-vc71-mt-1_46\*.exp - del vc71\boost_regex-vc71-mt-1_46\*.pch +boost_regex-vc71-mt-1_47_clean : + del vc71\boost_regex-vc71-mt-1_47\*.obj + del vc71\boost_regex-vc71-mt-1_47\*.idb + del vc71\boost_regex-vc71-mt-1_47\*.exp + del vc71\boost_regex-vc71-mt-1_47\*.pch -./vc71/boost_regex-vc71-mt-1_46.lib : vc71/boost_regex-vc71-mt-1_46/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/cregex.obj vc71/boost_regex-vc71-mt-1_46/fileiter.obj vc71/boost_regex-vc71-mt-1_46/icu.obj vc71/boost_regex-vc71-mt-1_46/instances.obj vc71/boost_regex-vc71-mt-1_46/posix_api.obj vc71/boost_regex-vc71-mt-1_46/regex.obj vc71/boost_regex-vc71-mt-1_46/regex_debug.obj vc71/boost_regex-vc71-mt-1_46/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_46/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_46/static_mutex.obj vc71/boost_regex-vc71-mt-1_46/usinstances.obj vc71/boost_regex-vc71-mt-1_46/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71/boost_regex-vc71-mt-1_46.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_46.dll" /implib:"vc71/boost_regex-vc71-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_46/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/cregex.obj vc71/boost_regex-vc71-mt-1_46/fileiter.obj vc71/boost_regex-vc71-mt-1_46/icu.obj vc71/boost_regex-vc71-mt-1_46/instances.obj vc71/boost_regex-vc71-mt-1_46/posix_api.obj vc71/boost_regex-vc71-mt-1_46/regex.obj vc71/boost_regex-vc71-mt-1_46/regex_debug.obj vc71/boost_regex-vc71-mt-1_46/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_46/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_46/static_mutex.obj vc71/boost_regex-vc71-mt-1_46/usinstances.obj vc71/boost_regex-vc71-mt-1_46/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_46/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_46/winstances.obj +./vc71/boost_regex-vc71-mt-1_47.lib : vc71/boost_regex-vc71-mt-1_47/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_47/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_47/cregex.obj vc71/boost_regex-vc71-mt-1_47/fileiter.obj vc71/boost_regex-vc71-mt-1_47/icu.obj vc71/boost_regex-vc71-mt-1_47/instances.obj vc71/boost_regex-vc71-mt-1_47/posix_api.obj vc71/boost_regex-vc71-mt-1_47/regex.obj vc71/boost_regex-vc71-mt-1_47/regex_debug.obj vc71/boost_regex-vc71-mt-1_47/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_47/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_47/static_mutex.obj vc71/boost_regex-vc71-mt-1_47/usinstances.obj vc71/boost_regex-vc71-mt-1_47/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_47/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_47/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc71/boost_regex-vc71-mt-1_47.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_47.dll" /implib:"vc71/boost_regex-vc71-mt-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_47/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_47/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_47/cregex.obj vc71/boost_regex-vc71-mt-1_47/fileiter.obj vc71/boost_regex-vc71-mt-1_47/icu.obj vc71/boost_regex-vc71-mt-1_47/instances.obj vc71/boost_regex-vc71-mt-1_47/posix_api.obj vc71/boost_regex-vc71-mt-1_47/regex.obj vc71/boost_regex-vc71-mt-1_47/regex_debug.obj vc71/boost_regex-vc71-mt-1_47/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_47/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_47/static_mutex.obj vc71/boost_regex-vc71-mt-1_47/usinstances.obj vc71/boost_regex-vc71-mt-1_47/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_47/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_47/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-1_46.lib +# section for libboost_regex-vc71-mt-1_47.lib # ######################################################## -vc71/libboost_regex-vc71-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_46/ -Fdvc71/libboost_regex-vc71-mt-1_46.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-1_47/ -Fdvc71/libboost_regex-vc71-mt-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-1_46_dir : - @if not exist "vc71\libboost_regex-vc71-mt-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_46 +libboost_regex-vc71-mt-1_47_dir : + @if not exist "vc71\libboost_regex-vc71-mt-1_47\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_47 -libboost_regex-vc71-mt-1_46_clean : - del vc71\libboost_regex-vc71-mt-1_46\*.obj - del vc71\libboost_regex-vc71-mt-1_46\*.idb - del vc71\libboost_regex-vc71-mt-1_46\*.exp - del vc71\libboost_regex-vc71-mt-1_46\*.pch +libboost_regex-vc71-mt-1_47_clean : + del vc71\libboost_regex-vc71-mt-1_47\*.obj + del vc71\libboost_regex-vc71-mt-1_47\*.idb + del vc71\libboost_regex-vc71-mt-1_47\*.exp + del vc71\libboost_regex-vc71-mt-1_47\*.pch -./vc71/libboost_regex-vc71-mt-1_46.lib : vc71/libboost_regex-vc71-mt-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/cregex.obj vc71/libboost_regex-vc71-mt-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-1_46/icu.obj vc71/libboost_regex-vc71-mt-1_46/instances.obj vc71/libboost_regex-vc71-mt-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-1_46/regex.obj vc71/libboost_regex-vc71-mt-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_46/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/cregex.obj vc71/libboost_regex-vc71-mt-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-1_46/icu.obj vc71/libboost_regex-vc71-mt-1_46/instances.obj vc71/libboost_regex-vc71-mt-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-1_46/regex.obj vc71/libboost_regex-vc71-mt-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_46/winstances.obj +./vc71/libboost_regex-vc71-mt-1_47.lib : vc71/libboost_regex-vc71-mt-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_47/cregex.obj vc71/libboost_regex-vc71-mt-1_47/fileiter.obj vc71/libboost_regex-vc71-mt-1_47/icu.obj vc71/libboost_regex-vc71-mt-1_47/instances.obj vc71/libboost_regex-vc71-mt-1_47/posix_api.obj vc71/libboost_regex-vc71-mt-1_47/regex.obj vc71/libboost_regex-vc71-mt-1_47/regex_debug.obj vc71/libboost_regex-vc71-mt-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_47/static_mutex.obj vc71/libboost_regex-vc71-mt-1_47/usinstances.obj vc71/libboost_regex-vc71-mt-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_47/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_47.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_47/cregex.obj vc71/libboost_regex-vc71-mt-1_47/fileiter.obj vc71/libboost_regex-vc71-mt-1_47/icu.obj vc71/libboost_regex-vc71-mt-1_47/instances.obj vc71/libboost_regex-vc71-mt-1_47/posix_api.obj vc71/libboost_regex-vc71-mt-1_47/regex.obj vc71/libboost_regex-vc71-mt-1_47/regex_debug.obj vc71/libboost_regex-vc71-mt-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_47/static_mutex.obj vc71/libboost_regex-vc71-mt-1_47/usinstances.obj vc71/libboost_regex-vc71-mt-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gd-1_46.lib +# section for libboost_regex-vc71-mt-gd-1_47.lib # ######################################################## -vc71/libboost_regex-vc71-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_46/ -Fdvc71/libboost_regex-vc71-mt-gd-1_46.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GX /RTC1 /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc71/libboost_regex-vc71-mt-gd-1_47/ -Fdvc71/libboost_regex-vc71-mt-gd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gd-1_46_dir : - @if not exist "vc71\libboost_regex-vc71-mt-gd-1_46\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_46 +libboost_regex-vc71-mt-gd-1_47_dir : + @if not exist "vc71\libboost_regex-vc71-mt-gd-1_47\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_47 -libboost_regex-vc71-mt-gd-1_46_clean : - del vc71\libboost_regex-vc71-mt-gd-1_46\*.obj - del vc71\libboost_regex-vc71-mt-gd-1_46\*.idb - del vc71\libboost_regex-vc71-mt-gd-1_46\*.exp - del vc71\libboost_regex-vc71-mt-gd-1_46\*.pch +libboost_regex-vc71-mt-gd-1_47_clean : + del vc71\libboost_regex-vc71-mt-gd-1_47\*.obj + del vc71\libboost_regex-vc71-mt-gd-1_47\*.idb + del vc71\libboost_regex-vc71-mt-gd-1_47\*.exp + del vc71\libboost_regex-vc71-mt-gd-1_47\*.pch -./vc71/libboost_regex-vc71-mt-gd-1_46.lib : vc71/libboost_regex-vc71-mt-gd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_46/icu.obj vc71/libboost_regex-vc71-mt-gd-1_46/instances.obj vc71/libboost_regex-vc71-mt-gd-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_46/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_46.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_46/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_46/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_46/icu.obj vc71/libboost_regex-vc71-mt-gd-1_46/instances.obj vc71/libboost_regex-vc71-mt-gd-1_46/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_46/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_46/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_46/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_46/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_46/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_46/winstances.obj +./vc71/libboost_regex-vc71-mt-gd-1_47.lib : vc71/libboost_regex-vc71-mt-gd-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_47/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_47/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_47/icu.obj vc71/libboost_regex-vc71-mt-gd-1_47/instances.obj vc71/libboost_regex-vc71-mt-gd-1_47/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_47/regex.obj vc71/libboost_regex-vc71-mt-gd-1_47/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_47/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_47/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_47/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_47.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_47/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_47/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_47/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_47/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_47/icu.obj vc71/libboost_regex-vc71-mt-gd-1_47/instances.obj vc71/libboost_regex-vc71-mt-gd-1_47/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_47/regex.obj vc71/libboost_regex-vc71-mt-gd-1_47/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_47/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_47/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_47/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_47/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_47/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_47/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_47/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_47/winstances.obj diff --git a/build/vc8.mak b/build/vc8.mak index 4b611121..61f38f8a 100644 --- a/build/vc8.mak +++ b/build/vc8.mak @@ -62,25 +62,25 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc80-s-1_46_dir ./vc80/libboost_regex-vc80-s-1_46.lib libboost_regex-vc80-mt-s-1_46_dir ./vc80/libboost_regex-vc80-mt-s-1_46.lib libboost_regex-vc80-sgd-1_46_dir ./vc80/libboost_regex-vc80-sgd-1_46.lib libboost_regex-vc80-mt-sgd-1_46_dir ./vc80/libboost_regex-vc80-mt-sgd-1_46.lib boost_regex-vc80-mt-gd-1_46_dir ./vc80/boost_regex-vc80-mt-gd-1_46.lib boost_regex-vc80-mt-1_46_dir ./vc80/boost_regex-vc80-mt-1_46.lib libboost_regex-vc80-mt-1_46_dir ./vc80/libboost_regex-vc80-mt-1_46.lib libboost_regex-vc80-mt-gd-1_46_dir ./vc80/libboost_regex-vc80-mt-gd-1_46.lib +all : main_dir libboost_regex-vc80-s-1_47_dir ./vc80/libboost_regex-vc80-s-1_47.lib libboost_regex-vc80-mt-s-1_47_dir ./vc80/libboost_regex-vc80-mt-s-1_47.lib libboost_regex-vc80-sgd-1_47_dir ./vc80/libboost_regex-vc80-sgd-1_47.lib libboost_regex-vc80-mt-sgd-1_47_dir ./vc80/libboost_regex-vc80-mt-sgd-1_47.lib boost_regex-vc80-mt-gd-1_47_dir ./vc80/boost_regex-vc80-mt-gd-1_47.lib boost_regex-vc80-mt-1_47_dir ./vc80/boost_regex-vc80-mt-1_47.lib libboost_regex-vc80-mt-1_47_dir ./vc80/libboost_regex-vc80-mt-1_47.lib libboost_regex-vc80-mt-gd-1_47_dir ./vc80/libboost_regex-vc80-mt-gd-1_47.lib -clean : libboost_regex-vc80-s-1_46_clean libboost_regex-vc80-mt-s-1_46_clean libboost_regex-vc80-sgd-1_46_clean libboost_regex-vc80-mt-sgd-1_46_clean boost_regex-vc80-mt-gd-1_46_clean boost_regex-vc80-mt-1_46_clean libboost_regex-vc80-mt-1_46_clean libboost_regex-vc80-mt-gd-1_46_clean +clean : libboost_regex-vc80-s-1_47_clean libboost_regex-vc80-mt-s-1_47_clean libboost_regex-vc80-sgd-1_47_clean libboost_regex-vc80-mt-sgd-1_47_clean boost_regex-vc80-mt-gd-1_47_clean boost_regex-vc80-mt-1_47_clean libboost_regex-vc80-mt-1_47_clean libboost_regex-vc80-mt-gd-1_47_clean install : all - copy vc80\libboost_regex-vc80-s-1_46.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-s-1_46.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-sgd-1_46.pdb "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-sgd-1_46.pdb "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_46.dll "$(MSVCDIR)\bin" - copy vc80\boost_regex-vc80-mt-gd-1_46.pdb "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-1_46.dll "$(MSVCDIR)\bin" - copy vc80\libboost_regex-vc80-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-s-1_47.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-s-1_47.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-sgd-1_47.pdb "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-sgd-1_47.pdb "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_47.dll "$(MSVCDIR)\bin" + copy vc80\boost_regex-vc80-mt-gd-1_47.pdb "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-1_47.dll "$(MSVCDIR)\bin" + copy vc80\libboost_regex-vc80-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_47.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc80\$(NULL)" mkdir vc80 @@ -88,545 +88,545 @@ main_dir : ######################################################## # -# section for libboost_regex-vc80-s-1_46.lib +# section for libboost_regex-vc80-s-1_47.lib # ######################################################## -vc80/libboost_regex-vc80-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_46/ -Fdvc80/libboost_regex-vc80-s-1_46.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /c /nologo /ML /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-s-1_47/ -Fdvc80/libboost_regex-vc80-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc80-s-1_46_dir : - @if not exist "vc80\libboost_regex-vc80-s-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-s-1_46 +libboost_regex-vc80-s-1_47_dir : + @if not exist "vc80\libboost_regex-vc80-s-1_47\$(NULL)" mkdir vc80\libboost_regex-vc80-s-1_47 -libboost_regex-vc80-s-1_46_clean : - del vc80\libboost_regex-vc80-s-1_46\*.obj - del vc80\libboost_regex-vc80-s-1_46\*.idb - del vc80\libboost_regex-vc80-s-1_46\*.exp - del vc80\libboost_regex-vc80-s-1_46\*.pch +libboost_regex-vc80-s-1_47_clean : + del vc80\libboost_regex-vc80-s-1_47\*.obj + del vc80\libboost_regex-vc80-s-1_47\*.idb + del vc80\libboost_regex-vc80-s-1_47\*.exp + del vc80\libboost_regex-vc80-s-1_47\*.pch -./vc80/libboost_regex-vc80-s-1_46.lib : vc80/libboost_regex-vc80-s-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/cregex.obj vc80/libboost_regex-vc80-s-1_46/fileiter.obj vc80/libboost_regex-vc80-s-1_46/icu.obj vc80/libboost_regex-vc80-s-1_46/instances.obj vc80/libboost_regex-vc80-s-1_46/posix_api.obj vc80/libboost_regex-vc80-s-1_46/regex.obj vc80/libboost_regex-vc80-s-1_46/regex_debug.obj vc80/libboost_regex-vc80-s-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-s-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-s-1_46/static_mutex.obj vc80/libboost_regex-vc80-s-1_46/usinstances.obj vc80/libboost_regex-vc80-s-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-s-1_46/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-s-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-s-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/cregex.obj vc80/libboost_regex-vc80-s-1_46/fileiter.obj vc80/libboost_regex-vc80-s-1_46/icu.obj vc80/libboost_regex-vc80-s-1_46/instances.obj vc80/libboost_regex-vc80-s-1_46/posix_api.obj vc80/libboost_regex-vc80-s-1_46/regex.obj vc80/libboost_regex-vc80-s-1_46/regex_debug.obj vc80/libboost_regex-vc80-s-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-s-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-s-1_46/static_mutex.obj vc80/libboost_regex-vc80-s-1_46/usinstances.obj vc80/libboost_regex-vc80-s-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-s-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-s-1_46/winstances.obj +./vc80/libboost_regex-vc80-s-1_47.lib : vc80/libboost_regex-vc80-s-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-s-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-s-1_47/cregex.obj vc80/libboost_regex-vc80-s-1_47/fileiter.obj vc80/libboost_regex-vc80-s-1_47/icu.obj vc80/libboost_regex-vc80-s-1_47/instances.obj vc80/libboost_regex-vc80-s-1_47/posix_api.obj vc80/libboost_regex-vc80-s-1_47/regex.obj vc80/libboost_regex-vc80-s-1_47/regex_debug.obj vc80/libboost_regex-vc80-s-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-s-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-s-1_47/static_mutex.obj vc80/libboost_regex-vc80-s-1_47/usinstances.obj vc80/libboost_regex-vc80-s-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-s-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-s-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-s-1_47/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-s-1_47.lib $(XSFLAGS) vc80/libboost_regex-vc80-s-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-s-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-s-1_47/cregex.obj vc80/libboost_regex-vc80-s-1_47/fileiter.obj vc80/libboost_regex-vc80-s-1_47/icu.obj vc80/libboost_regex-vc80-s-1_47/instances.obj vc80/libboost_regex-vc80-s-1_47/posix_api.obj vc80/libboost_regex-vc80-s-1_47/regex.obj vc80/libboost_regex-vc80-s-1_47/regex_debug.obj vc80/libboost_regex-vc80-s-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-s-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-s-1_47/static_mutex.obj vc80/libboost_regex-vc80-s-1_47/usinstances.obj vc80/libboost_regex-vc80-s-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-s-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-s-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-s-1_46.lib +# section for libboost_regex-vc80-mt-s-1_47.lib # ######################################################## -vc80/libboost_regex-vc80-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_46/ -Fdvc80/libboost_regex-vc80-mt-s-1_46.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-s-1_47/ -Fdvc80/libboost_regex-vc80-mt-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-s-1_46_dir : - @if not exist "vc80\libboost_regex-vc80-mt-s-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_46 +libboost_regex-vc80-mt-s-1_47_dir : + @if not exist "vc80\libboost_regex-vc80-mt-s-1_47\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_47 -libboost_regex-vc80-mt-s-1_46_clean : - del vc80\libboost_regex-vc80-mt-s-1_46\*.obj - del vc80\libboost_regex-vc80-mt-s-1_46\*.idb - del vc80\libboost_regex-vc80-mt-s-1_46\*.exp - del vc80\libboost_regex-vc80-mt-s-1_46\*.pch +libboost_regex-vc80-mt-s-1_47_clean : + del vc80\libboost_regex-vc80-mt-s-1_47\*.obj + del vc80\libboost_regex-vc80-mt-s-1_47\*.idb + del vc80\libboost_regex-vc80-mt-s-1_47\*.exp + del vc80\libboost_regex-vc80-mt-s-1_47\*.pch -./vc80/libboost_regex-vc80-mt-s-1_46.lib : vc80/libboost_regex-vc80-mt-s-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/cregex.obj vc80/libboost_regex-vc80-mt-s-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_46/icu.obj vc80/libboost_regex-vc80-mt-s-1_46/instances.obj vc80/libboost_regex-vc80-mt-s-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_46/regex.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_46/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/cregex.obj vc80/libboost_regex-vc80-mt-s-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_46/icu.obj vc80/libboost_regex-vc80-mt-s-1_46/instances.obj vc80/libboost_regex-vc80-mt-s-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_46/regex.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_46/winstances.obj +./vc80/libboost_regex-vc80-mt-s-1_47.lib : vc80/libboost_regex-vc80-mt-s-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_47/cregex.obj vc80/libboost_regex-vc80-mt-s-1_47/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_47/icu.obj vc80/libboost_regex-vc80-mt-s-1_47/instances.obj vc80/libboost_regex-vc80-mt-s-1_47/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_47/regex.obj vc80/libboost_regex-vc80-mt-s-1_47/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_47/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_47/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_47/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_47.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_47/cregex.obj vc80/libboost_regex-vc80-mt-s-1_47/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_47/icu.obj vc80/libboost_regex-vc80-mt-s-1_47/instances.obj vc80/libboost_regex-vc80-mt-s-1_47/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_47/regex.obj vc80/libboost_regex-vc80-mt-s-1_47/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_47/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_47/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc80-sgd-1_46.lib +# section for libboost_regex-vc80-sgd-1_47.lib # ######################################################## -vc80/libboost_regex-vc80-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_46/ -Fdvc80/libboost_regex-vc80-sgd-1_46.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MLd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-sgd-1_47/ -Fdvc80/libboost_regex-vc80-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc80-sgd-1_46_dir : - @if not exist "vc80\libboost_regex-vc80-sgd-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-sgd-1_46 +libboost_regex-vc80-sgd-1_47_dir : + @if not exist "vc80\libboost_regex-vc80-sgd-1_47\$(NULL)" mkdir vc80\libboost_regex-vc80-sgd-1_47 -libboost_regex-vc80-sgd-1_46_clean : - del vc80\libboost_regex-vc80-sgd-1_46\*.obj - del vc80\libboost_regex-vc80-sgd-1_46\*.idb - del vc80\libboost_regex-vc80-sgd-1_46\*.exp - del vc80\libboost_regex-vc80-sgd-1_46\*.pch +libboost_regex-vc80-sgd-1_47_clean : + del vc80\libboost_regex-vc80-sgd-1_47\*.obj + del vc80\libboost_regex-vc80-sgd-1_47\*.idb + del vc80\libboost_regex-vc80-sgd-1_47\*.exp + del vc80\libboost_regex-vc80-sgd-1_47\*.pch -./vc80/libboost_regex-vc80-sgd-1_46.lib : vc80/libboost_regex-vc80-sgd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/cregex.obj vc80/libboost_regex-vc80-sgd-1_46/fileiter.obj vc80/libboost_regex-vc80-sgd-1_46/icu.obj vc80/libboost_regex-vc80-sgd-1_46/instances.obj vc80/libboost_regex-vc80-sgd-1_46/posix_api.obj vc80/libboost_regex-vc80-sgd-1_46/regex.obj vc80/libboost_regex-vc80-sgd-1_46/regex_debug.obj vc80/libboost_regex-vc80-sgd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-sgd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-sgd-1_46/static_mutex.obj vc80/libboost_regex-vc80-sgd-1_46/usinstances.obj vc80/libboost_regex-vc80-sgd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-sgd-1_46/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-sgd-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-sgd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/cregex.obj vc80/libboost_regex-vc80-sgd-1_46/fileiter.obj vc80/libboost_regex-vc80-sgd-1_46/icu.obj vc80/libboost_regex-vc80-sgd-1_46/instances.obj vc80/libboost_regex-vc80-sgd-1_46/posix_api.obj vc80/libboost_regex-vc80-sgd-1_46/regex.obj vc80/libboost_regex-vc80-sgd-1_46/regex_debug.obj vc80/libboost_regex-vc80-sgd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-sgd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-sgd-1_46/static_mutex.obj vc80/libboost_regex-vc80-sgd-1_46/usinstances.obj vc80/libboost_regex-vc80-sgd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-sgd-1_46/winstances.obj +./vc80/libboost_regex-vc80-sgd-1_47.lib : vc80/libboost_regex-vc80-sgd-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_47/cregex.obj vc80/libboost_regex-vc80-sgd-1_47/fileiter.obj vc80/libboost_regex-vc80-sgd-1_47/icu.obj vc80/libboost_regex-vc80-sgd-1_47/instances.obj vc80/libboost_regex-vc80-sgd-1_47/posix_api.obj vc80/libboost_regex-vc80-sgd-1_47/regex.obj vc80/libboost_regex-vc80-sgd-1_47/regex_debug.obj vc80/libboost_regex-vc80-sgd-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-sgd-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-sgd-1_47/static_mutex.obj vc80/libboost_regex-vc80-sgd-1_47/usinstances.obj vc80/libboost_regex-vc80-sgd-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-sgd-1_47/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-sgd-1_47.lib $(XSFLAGS) vc80/libboost_regex-vc80-sgd-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_47/cregex.obj vc80/libboost_regex-vc80-sgd-1_47/fileiter.obj vc80/libboost_regex-vc80-sgd-1_47/icu.obj vc80/libboost_regex-vc80-sgd-1_47/instances.obj vc80/libboost_regex-vc80-sgd-1_47/posix_api.obj vc80/libboost_regex-vc80-sgd-1_47/regex.obj vc80/libboost_regex-vc80-sgd-1_47/regex_debug.obj vc80/libboost_regex-vc80-sgd-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-sgd-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-sgd-1_47/static_mutex.obj vc80/libboost_regex-vc80-sgd-1_47/usinstances.obj vc80/libboost_regex-vc80-sgd-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-sgd-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-sgd-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-sgd-1_46.lib +# section for libboost_regex-vc80-mt-sgd-1_47.lib # ######################################################## -vc80/libboost_regex-vc80-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_46/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_46.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-sgd-1_47/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-sgd-1_46_dir : - @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_46 +libboost_regex-vc80-mt-sgd-1_47_dir : + @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_47\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_47 -libboost_regex-vc80-mt-sgd-1_46_clean : - del vc80\libboost_regex-vc80-mt-sgd-1_46\*.obj - del vc80\libboost_regex-vc80-mt-sgd-1_46\*.idb - del vc80\libboost_regex-vc80-mt-sgd-1_46\*.exp - del vc80\libboost_regex-vc80-mt-sgd-1_46\*.pch +libboost_regex-vc80-mt-sgd-1_47_clean : + del vc80\libboost_regex-vc80-mt-sgd-1_47\*.obj + del vc80\libboost_regex-vc80-mt-sgd-1_47\*.idb + del vc80\libboost_regex-vc80-mt-sgd-1_47\*.exp + del vc80\libboost_regex-vc80-mt-sgd-1_47\*.pch -./vc80/libboost_regex-vc80-mt-sgd-1_46.lib : vc80/libboost_regex-vc80-mt-sgd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_46/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_46/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_46/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_46/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_46/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_46/winstances.obj +./vc80/libboost_regex-vc80-mt-sgd-1_47.lib : vc80/libboost_regex-vc80-mt-sgd-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_47/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_47/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_47/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_47/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_47/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_47/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_47/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_47/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_47/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_47/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_47.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_47/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_47/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_47/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_47/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_47/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_47/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_47/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_47/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_47/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-gd-1_46.lib +# section for boost_regex-vc80-mt-gd-1_47.lib # ######################################################## -vc80/boost_regex-vc80-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_46/ -Fdvc80/boost_regex-vc80-mt-gd-1_46.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-gd-1_47/ -Fdvc80/boost_regex-vc80-mt-gd-1_47.pdb ../src/winstances.cpp -boost_regex-vc80-mt-gd-1_46_dir : - @if not exist "vc80\boost_regex-vc80-mt-gd-1_46\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_46 +boost_regex-vc80-mt-gd-1_47_dir : + @if not exist "vc80\boost_regex-vc80-mt-gd-1_47\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_47 -boost_regex-vc80-mt-gd-1_46_clean : - del vc80\boost_regex-vc80-mt-gd-1_46\*.obj - del vc80\boost_regex-vc80-mt-gd-1_46\*.idb - del vc80\boost_regex-vc80-mt-gd-1_46\*.exp - del vc80\boost_regex-vc80-mt-gd-1_46\*.pch +boost_regex-vc80-mt-gd-1_47_clean : + del vc80\boost_regex-vc80-mt-gd-1_47\*.obj + del vc80\boost_regex-vc80-mt-gd-1_47\*.idb + del vc80\boost_regex-vc80-mt-gd-1_47\*.exp + del vc80\boost_regex-vc80-mt-gd-1_47\*.pch -./vc80/boost_regex-vc80-mt-gd-1_46.lib : vc80/boost_regex-vc80-mt-gd-1_46/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/cregex.obj vc80/boost_regex-vc80-mt-gd-1_46/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_46/icu.obj vc80/boost_regex-vc80-mt-gd-1_46/instances.obj vc80/boost_regex-vc80-mt-gd-1_46/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_46/regex.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_46/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_46/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc80/boost_regex-vc80-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_46.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_46/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/cregex.obj vc80/boost_regex-vc80-mt-gd-1_46/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_46/icu.obj vc80/boost_regex-vc80-mt-gd-1_46/instances.obj vc80/boost_regex-vc80-mt-gd-1_46/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_46/regex.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_46/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_46/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_46/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_46/winstances.obj +./vc80/boost_regex-vc80-mt-gd-1_47.lib : vc80/boost_regex-vc80-mt-gd-1_47/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_47/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_47/cregex.obj vc80/boost_regex-vc80-mt-gd-1_47/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_47/icu.obj vc80/boost_regex-vc80-mt-gd-1_47/instances.obj vc80/boost_regex-vc80-mt-gd-1_47/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_47/regex.obj vc80/boost_regex-vc80-mt-gd-1_47/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_47/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_47/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_47/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_47/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_47/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_47/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_47/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc80/boost_regex-vc80-mt-gd-1_47.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_47.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_47/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_47/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_47/cregex.obj vc80/boost_regex-vc80-mt-gd-1_47/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_47/icu.obj vc80/boost_regex-vc80-mt-gd-1_47/instances.obj vc80/boost_regex-vc80-mt-gd-1_47/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_47/regex.obj vc80/boost_regex-vc80-mt-gd-1_47/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_47/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_47/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_47/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_47/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_47/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_47/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_47/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-1_46.lib +# section for boost_regex-vc80-mt-1_47.lib # ######################################################## -vc80/boost_regex-vc80-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_46/ -Fdvc80/boost_regex-vc80-mt-1_46.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/boost_regex-vc80-mt-1_47/ -Fdvc80/boost_regex-vc80-mt-1_47.pdb ../src/winstances.cpp -boost_regex-vc80-mt-1_46_dir : - @if not exist "vc80\boost_regex-vc80-mt-1_46\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_46 +boost_regex-vc80-mt-1_47_dir : + @if not exist "vc80\boost_regex-vc80-mt-1_47\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_47 -boost_regex-vc80-mt-1_46_clean : - del vc80\boost_regex-vc80-mt-1_46\*.obj - del vc80\boost_regex-vc80-mt-1_46\*.idb - del vc80\boost_regex-vc80-mt-1_46\*.exp - del vc80\boost_regex-vc80-mt-1_46\*.pch +boost_regex-vc80-mt-1_47_clean : + del vc80\boost_regex-vc80-mt-1_47\*.obj + del vc80\boost_regex-vc80-mt-1_47\*.idb + del vc80\boost_regex-vc80-mt-1_47\*.exp + del vc80\boost_regex-vc80-mt-1_47\*.pch -./vc80/boost_regex-vc80-mt-1_46.lib : vc80/boost_regex-vc80-mt-1_46/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/cregex.obj vc80/boost_regex-vc80-mt-1_46/fileiter.obj vc80/boost_regex-vc80-mt-1_46/icu.obj vc80/boost_regex-vc80-mt-1_46/instances.obj vc80/boost_regex-vc80-mt-1_46/posix_api.obj vc80/boost_regex-vc80-mt-1_46/regex.obj vc80/boost_regex-vc80-mt-1_46/regex_debug.obj vc80/boost_regex-vc80-mt-1_46/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_46/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_46/static_mutex.obj vc80/boost_regex-vc80-mt-1_46/usinstances.obj vc80/boost_regex-vc80-mt-1_46/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc80/boost_regex-vc80-mt-1_46.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_46.dll" /implib:"vc80/boost_regex-vc80-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_46/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/cregex.obj vc80/boost_regex-vc80-mt-1_46/fileiter.obj vc80/boost_regex-vc80-mt-1_46/icu.obj vc80/boost_regex-vc80-mt-1_46/instances.obj vc80/boost_regex-vc80-mt-1_46/posix_api.obj vc80/boost_regex-vc80-mt-1_46/regex.obj vc80/boost_regex-vc80-mt-1_46/regex_debug.obj vc80/boost_regex-vc80-mt-1_46/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_46/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_46/static_mutex.obj vc80/boost_regex-vc80-mt-1_46/usinstances.obj vc80/boost_regex-vc80-mt-1_46/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_46/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_46/winstances.obj +./vc80/boost_regex-vc80-mt-1_47.lib : vc80/boost_regex-vc80-mt-1_47/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_47/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_47/cregex.obj vc80/boost_regex-vc80-mt-1_47/fileiter.obj vc80/boost_regex-vc80-mt-1_47/icu.obj vc80/boost_regex-vc80-mt-1_47/instances.obj vc80/boost_regex-vc80-mt-1_47/posix_api.obj vc80/boost_regex-vc80-mt-1_47/regex.obj vc80/boost_regex-vc80-mt-1_47/regex_debug.obj vc80/boost_regex-vc80-mt-1_47/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_47/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_47/static_mutex.obj vc80/boost_regex-vc80-mt-1_47/usinstances.obj vc80/boost_regex-vc80-mt-1_47/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_47/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_47/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc80/boost_regex-vc80-mt-1_47.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_47.dll" /implib:"vc80/boost_regex-vc80-mt-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_47/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_47/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_47/cregex.obj vc80/boost_regex-vc80-mt-1_47/fileiter.obj vc80/boost_regex-vc80-mt-1_47/icu.obj vc80/boost_regex-vc80-mt-1_47/instances.obj vc80/boost_regex-vc80-mt-1_47/posix_api.obj vc80/boost_regex-vc80-mt-1_47/regex.obj vc80/boost_regex-vc80-mt-1_47/regex_debug.obj vc80/boost_regex-vc80-mt-1_47/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_47/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_47/static_mutex.obj vc80/boost_regex-vc80-mt-1_47/usinstances.obj vc80/boost_regex-vc80-mt-1_47/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_47/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_47/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-1_46.lib +# section for libboost_regex-vc80-mt-1_47.lib # ######################################################## -vc80/libboost_regex-vc80-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_46/ -Fdvc80/libboost_regex-vc80-mt-1_46.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-1_47/ -Fdvc80/libboost_regex-vc80-mt-1_47.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-1_46_dir : - @if not exist "vc80\libboost_regex-vc80-mt-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_46 +libboost_regex-vc80-mt-1_47_dir : + @if not exist "vc80\libboost_regex-vc80-mt-1_47\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_47 -libboost_regex-vc80-mt-1_46_clean : - del vc80\libboost_regex-vc80-mt-1_46\*.obj - del vc80\libboost_regex-vc80-mt-1_46\*.idb - del vc80\libboost_regex-vc80-mt-1_46\*.exp - del vc80\libboost_regex-vc80-mt-1_46\*.pch +libboost_regex-vc80-mt-1_47_clean : + del vc80\libboost_regex-vc80-mt-1_47\*.obj + del vc80\libboost_regex-vc80-mt-1_47\*.idb + del vc80\libboost_regex-vc80-mt-1_47\*.exp + del vc80\libboost_regex-vc80-mt-1_47\*.pch -./vc80/libboost_regex-vc80-mt-1_46.lib : vc80/libboost_regex-vc80-mt-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/cregex.obj vc80/libboost_regex-vc80-mt-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-1_46/icu.obj vc80/libboost_regex-vc80-mt-1_46/instances.obj vc80/libboost_regex-vc80-mt-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-1_46/regex.obj vc80/libboost_regex-vc80-mt-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_46/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/cregex.obj vc80/libboost_regex-vc80-mt-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-1_46/icu.obj vc80/libboost_regex-vc80-mt-1_46/instances.obj vc80/libboost_regex-vc80-mt-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-1_46/regex.obj vc80/libboost_regex-vc80-mt-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_46/winstances.obj +./vc80/libboost_regex-vc80-mt-1_47.lib : vc80/libboost_regex-vc80-mt-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_47/cregex.obj vc80/libboost_regex-vc80-mt-1_47/fileiter.obj vc80/libboost_regex-vc80-mt-1_47/icu.obj vc80/libboost_regex-vc80-mt-1_47/instances.obj vc80/libboost_regex-vc80-mt-1_47/posix_api.obj vc80/libboost_regex-vc80-mt-1_47/regex.obj vc80/libboost_regex-vc80-mt-1_47/regex_debug.obj vc80/libboost_regex-vc80-mt-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_47/static_mutex.obj vc80/libboost_regex-vc80-mt-1_47/usinstances.obj vc80/libboost_regex-vc80-mt-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_47/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_47.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_47/cregex.obj vc80/libboost_regex-vc80-mt-1_47/fileiter.obj vc80/libboost_regex-vc80-mt-1_47/icu.obj vc80/libboost_regex-vc80-mt-1_47/instances.obj vc80/libboost_regex-vc80-mt-1_47/posix_api.obj vc80/libboost_regex-vc80-mt-1_47/regex.obj vc80/libboost_regex-vc80-mt-1_47/regex_debug.obj vc80/libboost_regex-vc80-mt-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_47/static_mutex.obj vc80/libboost_regex-vc80-mt-1_47/usinstances.obj vc80/libboost_regex-vc80-mt-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-gd-1_46.lib +# section for libboost_regex-vc80-mt-gd-1_47.lib # ######################################################## -vc80/libboost_regex-vc80-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_46/ -Fdvc80/libboost_regex-vc80-mt-gd-1_46.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc80/libboost_regex-vc80-mt-gd-1_47/ -Fdvc80/libboost_regex-vc80-mt-gd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-gd-1_46_dir : - @if not exist "vc80\libboost_regex-vc80-mt-gd-1_46\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_46 +libboost_regex-vc80-mt-gd-1_47_dir : + @if not exist "vc80\libboost_regex-vc80-mt-gd-1_47\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_47 -libboost_regex-vc80-mt-gd-1_46_clean : - del vc80\libboost_regex-vc80-mt-gd-1_46\*.obj - del vc80\libboost_regex-vc80-mt-gd-1_46\*.idb - del vc80\libboost_regex-vc80-mt-gd-1_46\*.exp - del vc80\libboost_regex-vc80-mt-gd-1_46\*.pch +libboost_regex-vc80-mt-gd-1_47_clean : + del vc80\libboost_regex-vc80-mt-gd-1_47\*.obj + del vc80\libboost_regex-vc80-mt-gd-1_47\*.idb + del vc80\libboost_regex-vc80-mt-gd-1_47\*.exp + del vc80\libboost_regex-vc80-mt-gd-1_47\*.pch -./vc80/libboost_regex-vc80-mt-gd-1_46.lib : vc80/libboost_regex-vc80-mt-gd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_46/icu.obj vc80/libboost_regex-vc80-mt-gd-1_46/instances.obj vc80/libboost_regex-vc80-mt-gd-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_46/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_46.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_46/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_46/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_46/icu.obj vc80/libboost_regex-vc80-mt-gd-1_46/instances.obj vc80/libboost_regex-vc80-mt-gd-1_46/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_46/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_46/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_46/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_46/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_46/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_46/winstances.obj +./vc80/libboost_regex-vc80-mt-gd-1_47.lib : vc80/libboost_regex-vc80-mt-gd-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_47/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_47/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_47/icu.obj vc80/libboost_regex-vc80-mt-gd-1_47/instances.obj vc80/libboost_regex-vc80-mt-gd-1_47/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_47/regex.obj vc80/libboost_regex-vc80-mt-gd-1_47/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_47/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_47/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_47/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_47.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_47/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_47/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_47/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_47/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_47/icu.obj vc80/libboost_regex-vc80-mt-gd-1_47/instances.obj vc80/libboost_regex-vc80-mt-gd-1_47/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_47/regex.obj vc80/libboost_regex-vc80-mt-gd-1_47/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_47/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_47/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_47/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_47/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_47/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_47/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_47/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_47/winstances.obj diff --git a/build/vc9.mak b/build/vc9.mak index b333dd48..f878e97f 100644 --- a/build/vc9.mak +++ b/build/vc9.mak @@ -62,20 +62,20 @@ ICU_LINK_OPTS= /LIBPATH:"$(ICU_PATH)\lib" icuin.lib icuuc.lib ALL_HEADER= ../../../boost/regex/config.hpp ../../../boost/regex/icu.hpp ../../../boost/regex/pattern_except.hpp ../../../boost/regex/regex_traits.hpp ../../../boost/regex/user.hpp ../../../boost/regex/v4/basic_regex.hpp ../../../boost/regex/v4/basic_regex_creator.hpp ../../../boost/regex/v4/basic_regex_parser.hpp ../../../boost/regex/v4/c_regex_traits.hpp ../../../boost/regex/v4/char_regex_traits.hpp ../../../boost/regex/v4/cpp_regex_traits.hpp ../../../boost/regex/v4/cregex.hpp ../../../boost/regex/v4/error_type.hpp ../../../boost/regex/v4/fileiter.hpp ../../../boost/regex/v4/instances.hpp ../../../boost/regex/v4/iterator_category.hpp ../../../boost/regex/v4/iterator_traits.hpp ../../../boost/regex/v4/match_flags.hpp ../../../boost/regex/v4/match_results.hpp ../../../boost/regex/v4/mem_block_cache.hpp ../../../boost/regex/v4/perl_matcher.hpp ../../../boost/regex/v4/perl_matcher_common.hpp ../../../boost/regex/v4/perl_matcher_non_recursive.hpp ../../../boost/regex/v4/perl_matcher_recursive.hpp ../../../boost/regex/v4/primary_transform.hpp ../../../boost/regex/v4/protected_call.hpp ../../../boost/regex/v4/regbase.hpp ../../../boost/regex/v4/regex.hpp ../../../boost/regex/v4/regex_format.hpp ../../../boost/regex/v4/regex_fwd.hpp ../../../boost/regex/v4/regex_grep.hpp ../../../boost/regex/v4/regex_iterator.hpp ../../../boost/regex/v4/regex_match.hpp ../../../boost/regex/v4/regex_merge.hpp ../../../boost/regex/v4/regex_raw_buffer.hpp ../../../boost/regex/v4/regex_replace.hpp ../../../boost/regex/v4/regex_search.hpp ../../../boost/regex/v4/regex_split.hpp ../../../boost/regex/v4/regex_token_iterator.hpp ../../../boost/regex/v4/regex_traits.hpp ../../../boost/regex/v4/regex_traits_defaults.hpp ../../../boost/regex/v4/regex_workaround.hpp ../../../boost/regex/v4/states.hpp ../../../boost/regex/v4/sub_match.hpp ../../../boost/regex/v4/syntax_type.hpp ../../../boost/regex/v4/u32regex_iterator.hpp ../../../boost/regex/v4/u32regex_token_iterator.hpp ../../../boost/regex/v4/w32_regex_traits.hpp ../../../boost/regex/config/borland.hpp ../../../boost/regex/config/cwchar.hpp -all : main_dir libboost_regex-vc90-mt-s-1_46_dir ./vc90/libboost_regex-vc90-mt-s-1_46.lib libboost_regex-vc90-mt-sgd-1_46_dir ./vc90/libboost_regex-vc90-mt-sgd-1_46.lib boost_regex-vc90-mt-gd-1_46_dir ./vc90/boost_regex-vc90-mt-gd-1_46.lib boost_regex-vc90-mt-1_46_dir ./vc90/boost_regex-vc90-mt-1_46.lib libboost_regex-vc90-mt-1_46_dir ./vc90/libboost_regex-vc90-mt-1_46.lib libboost_regex-vc90-mt-gd-1_46_dir ./vc90/libboost_regex-vc90-mt-gd-1_46.lib +all : main_dir libboost_regex-vc90-mt-s-1_47_dir ./vc90/libboost_regex-vc90-mt-s-1_47.lib libboost_regex-vc90-mt-sgd-1_47_dir ./vc90/libboost_regex-vc90-mt-sgd-1_47.lib boost_regex-vc90-mt-gd-1_47_dir ./vc90/boost_regex-vc90-mt-gd-1_47.lib boost_regex-vc90-mt-1_47_dir ./vc90/boost_regex-vc90-mt-1_47.lib libboost_regex-vc90-mt-1_47_dir ./vc90/libboost_regex-vc90-mt-1_47.lib libboost_regex-vc90-mt-gd-1_47_dir ./vc90/libboost_regex-vc90-mt-gd-1_47.lib -clean : libboost_regex-vc90-mt-s-1_46_clean libboost_regex-vc90-mt-sgd-1_46_clean boost_regex-vc90-mt-gd-1_46_clean boost_regex-vc90-mt-1_46_clean libboost_regex-vc90-mt-1_46_clean libboost_regex-vc90-mt-gd-1_46_clean +clean : libboost_regex-vc90-mt-s-1_47_clean libboost_regex-vc90-mt-sgd-1_47_clean boost_regex-vc90-mt-gd-1_47_clean boost_regex-vc90-mt-1_47_clean libboost_regex-vc90-mt-1_47_clean libboost_regex-vc90-mt-gd-1_47_clean install : all - copy vc90\libboost_regex-vc90-mt-s-1_46.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-sgd-1_46.lib "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-gd-1_46.dll "$(MSVCDIR)\bin" - copy vc90\boost_regex-vc90-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-1_46.dll "$(MSVCDIR)\bin" - copy vc90\libboost_regex-vc90-mt-1_46.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-gd-1_46.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-gd-1_46.pdb "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-s-1_47.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-sgd-1_47.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_47.dll "$(MSVCDIR)\bin" + copy vc90\boost_regex-vc90-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-1_47.dll "$(MSVCDIR)\bin" + copy vc90\libboost_regex-vc90-mt-1_47.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_47.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_47.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc90\$(NULL)" mkdir vc90 @@ -83,409 +83,409 @@ main_dir : ######################################################## # -# section for libboost_regex-vc90-mt-s-1_46.lib +# section for libboost_regex-vc90-mt-s-1_47.lib # ######################################################## -vc90/libboost_regex-vc90-mt-s-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-s-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-s-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-s-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-s-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-s-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-s-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-s-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-s-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-s-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-s-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-s-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-s-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-s-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-s-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-s-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-s-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-s-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-s-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-s-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-s-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-s-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-s-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-s-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-s-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_46/ -Fdvc90/libboost_regex-vc90-mt-s-1_46.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-s-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MT /W3 /EHsc /O2 /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-s-1_47/ -Fdvc90/libboost_regex-vc90-mt-s-1_47.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-s-1_46_dir : - @if not exist "vc90\libboost_regex-vc90-mt-s-1_46\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-s-1_46 +libboost_regex-vc90-mt-s-1_47_dir : + @if not exist "vc90\libboost_regex-vc90-mt-s-1_47\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-s-1_47 -libboost_regex-vc90-mt-s-1_46_clean : - del vc90\libboost_regex-vc90-mt-s-1_46\*.obj - del vc90\libboost_regex-vc90-mt-s-1_46\*.idb - del vc90\libboost_regex-vc90-mt-s-1_46\*.exp - del vc90\libboost_regex-vc90-mt-s-1_46\*.pch +libboost_regex-vc90-mt-s-1_47_clean : + del vc90\libboost_regex-vc90-mt-s-1_47\*.obj + del vc90\libboost_regex-vc90-mt-s-1_47\*.idb + del vc90\libboost_regex-vc90-mt-s-1_47\*.exp + del vc90\libboost_regex-vc90-mt-s-1_47\*.pch -./vc90/libboost_regex-vc90-mt-s-1_46.lib : vc90/libboost_regex-vc90-mt-s-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/cregex.obj vc90/libboost_regex-vc90-mt-s-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_46/icu.obj vc90/libboost_regex-vc90-mt-s-1_46/instances.obj vc90/libboost_regex-vc90-mt-s-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_46/regex.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_46/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-s-1_46.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-s-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/cregex.obj vc90/libboost_regex-vc90-mt-s-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_46/icu.obj vc90/libboost_regex-vc90-mt-s-1_46/instances.obj vc90/libboost_regex-vc90-mt-s-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_46/regex.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_46/winstances.obj +./vc90/libboost_regex-vc90-mt-s-1_47.lib : vc90/libboost_regex-vc90-mt-s-1_47/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_47/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_47/cregex.obj vc90/libboost_regex-vc90-mt-s-1_47/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_47/icu.obj vc90/libboost_regex-vc90-mt-s-1_47/instances.obj vc90/libboost_regex-vc90-mt-s-1_47/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_47/regex.obj vc90/libboost_regex-vc90-mt-s-1_47/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_47/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_47/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_47/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_47/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_47/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_47/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_47/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_47/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-s-1_47.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-s-1_47/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_47/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_47/cregex.obj vc90/libboost_regex-vc90-mt-s-1_47/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_47/icu.obj vc90/libboost_regex-vc90-mt-s-1_47/instances.obj vc90/libboost_regex-vc90-mt-s-1_47/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_47/regex.obj vc90/libboost_regex-vc90-mt-s-1_47/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_47/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_47/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_47/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_47/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_47/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_47/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_47/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-sgd-1_46.lib +# section for libboost_regex-vc90-mt-sgd-1_47.lib # ######################################################## -vc90/libboost_regex-vc90-mt-sgd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-sgd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_46/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_46.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MTd /W3 /Gm /EHsc /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-sgd-1_47/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-sgd-1_46_dir : - @if not exist "vc90\libboost_regex-vc90-mt-sgd-1_46\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-sgd-1_46 +libboost_regex-vc90-mt-sgd-1_47_dir : + @if not exist "vc90\libboost_regex-vc90-mt-sgd-1_47\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-sgd-1_47 -libboost_regex-vc90-mt-sgd-1_46_clean : - del vc90\libboost_regex-vc90-mt-sgd-1_46\*.obj - del vc90\libboost_regex-vc90-mt-sgd-1_46\*.idb - del vc90\libboost_regex-vc90-mt-sgd-1_46\*.exp - del vc90\libboost_regex-vc90-mt-sgd-1_46\*.pch +libboost_regex-vc90-mt-sgd-1_47_clean : + del vc90\libboost_regex-vc90-mt-sgd-1_47\*.obj + del vc90\libboost_regex-vc90-mt-sgd-1_47\*.idb + del vc90\libboost_regex-vc90-mt-sgd-1_47\*.exp + del vc90\libboost_regex-vc90-mt-sgd-1_47\*.pch -./vc90/libboost_regex-vc90-mt-sgd-1_46.lib : vc90/libboost_regex-vc90-mt-sgd-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_46/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_46/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_46/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-sgd-1_46.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-sgd-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_46/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_46/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_46/winstances.obj +./vc90/libboost_regex-vc90-mt-sgd-1_47.lib : vc90/libboost_regex-vc90-mt-sgd-1_47/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_47/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_47/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_47/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_47/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_47/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_47/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_47/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_47/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_47/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_47/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_47/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_47/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_47/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_47/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_47/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_47/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-sgd-1_47.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-sgd-1_47/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_47/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_47/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_47/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_47/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_47/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_47/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_47/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_47/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_47/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_47/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_47/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_47/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_47/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_47/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_47/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc90-mt-gd-1_46.lib +# section for boost_regex-vc90-mt-gd-1_47.lib # ######################################################## -vc90/boost_regex-vc90-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/cregex.cpp +vc90/boost_regex-vc90-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/cregex.cpp -vc90/boost_regex-vc90-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/fileiter.cpp +vc90/boost_regex-vc90-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/fileiter.cpp -vc90/boost_regex-vc90-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/icu.cpp +vc90/boost_regex-vc90-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/icu.cpp -vc90/boost_regex-vc90-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/instances.cpp +vc90/boost_regex-vc90-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/instances.cpp -vc90/boost_regex-vc90-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/posix_api.cpp +vc90/boost_regex-vc90-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/posix_api.cpp -vc90/boost_regex-vc90-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/regex.cpp +vc90/boost_regex-vc90-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/regex.cpp -vc90/boost_regex-vc90-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc90/boost_regex-vc90-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc90/boost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc90/boost_regex-vc90-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc90/boost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc90/boost_regex-vc90-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc90/boost_regex-vc90-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc90/boost_regex-vc90-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc90/boost_regex-vc90-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/usinstances.cpp +vc90/boost_regex-vc90-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/usinstances.cpp -vc90/boost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc90/boost_regex-vc90-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc90/boost_regex-vc90-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_46/ -Fdvc90/boost_regex-vc90-mt-gd-1_46.pdb ../src/winstances.cpp +vc90/boost_regex-vc90-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /D_DEBUG /DBOOST_REGEX_DYN_LINK /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-gd-1_47/ -Fdvc90/boost_regex-vc90-mt-gd-1_47.pdb ../src/winstances.cpp -boost_regex-vc90-mt-gd-1_46_dir : - @if not exist "vc90\boost_regex-vc90-mt-gd-1_46\$(NULL)" mkdir vc90\boost_regex-vc90-mt-gd-1_46 +boost_regex-vc90-mt-gd-1_47_dir : + @if not exist "vc90\boost_regex-vc90-mt-gd-1_47\$(NULL)" mkdir vc90\boost_regex-vc90-mt-gd-1_47 -boost_regex-vc90-mt-gd-1_46_clean : - del vc90\boost_regex-vc90-mt-gd-1_46\*.obj - del vc90\boost_regex-vc90-mt-gd-1_46\*.idb - del vc90\boost_regex-vc90-mt-gd-1_46\*.exp - del vc90\boost_regex-vc90-mt-gd-1_46\*.pch +boost_regex-vc90-mt-gd-1_47_clean : + del vc90\boost_regex-vc90-mt-gd-1_47\*.obj + del vc90\boost_regex-vc90-mt-gd-1_47\*.idb + del vc90\boost_regex-vc90-mt-gd-1_47\*.exp + del vc90\boost_regex-vc90-mt-gd-1_47\*.pch -./vc90/boost_regex-vc90-mt-gd-1_46.lib : vc90/boost_regex-vc90-mt-gd-1_46/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/cregex.obj vc90/boost_regex-vc90-mt-gd-1_46/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_46/icu.obj vc90/boost_regex-vc90-mt-gd-1_46/instances.obj vc90/boost_regex-vc90-mt-gd-1_46/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_46/regex.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_46/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_46/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc90/boost_regex-vc90-mt-gd-1_46.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-gd-1_46.dll" /implib:"vc90/boost_regex-vc90-mt-gd-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-gd-1_46/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/cregex.obj vc90/boost_regex-vc90-mt-gd-1_46/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_46/icu.obj vc90/boost_regex-vc90-mt-gd-1_46/instances.obj vc90/boost_regex-vc90-mt-gd-1_46/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_46/regex.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_46/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_46/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_46/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_46/winstances.obj +./vc90/boost_regex-vc90-mt-gd-1_47.lib : vc90/boost_regex-vc90-mt-gd-1_47/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_47/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_47/cregex.obj vc90/boost_regex-vc90-mt-gd-1_47/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_47/icu.obj vc90/boost_regex-vc90-mt-gd-1_47/instances.obj vc90/boost_regex-vc90-mt-gd-1_47/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_47/regex.obj vc90/boost_regex-vc90-mt-gd-1_47/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_47/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_47/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_47/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_47/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_47/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_47/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_47/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc90/boost_regex-vc90-mt-gd-1_47.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-gd-1_47.dll" /implib:"vc90/boost_regex-vc90-mt-gd-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-gd-1_47/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_47/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_47/cregex.obj vc90/boost_regex-vc90-mt-gd-1_47/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_47/icu.obj vc90/boost_regex-vc90-mt-gd-1_47/instances.obj vc90/boost_regex-vc90-mt-gd-1_47/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_47/regex.obj vc90/boost_regex-vc90-mt-gd-1_47/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_47/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_47/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_47/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_47/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_47/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_47/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_47/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_47/winstances.obj ######################################################## # -# section for boost_regex-vc90-mt-1_46.lib +# section for boost_regex-vc90-mt-1_47.lib # ######################################################## -vc90/boost_regex-vc90-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/c_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/c_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/cregex.cpp +vc90/boost_regex-vc90-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/cregex.cpp -vc90/boost_regex-vc90-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/fileiter.cpp +vc90/boost_regex-vc90-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/fileiter.cpp -vc90/boost_regex-vc90-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/icu.cpp +vc90/boost_regex-vc90-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/icu.cpp -vc90/boost_regex-vc90-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/instances.cpp +vc90/boost_regex-vc90-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/instances.cpp -vc90/boost_regex-vc90-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/posix_api.cpp +vc90/boost_regex-vc90-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/posix_api.cpp -vc90/boost_regex-vc90-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/regex.cpp +vc90/boost_regex-vc90-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/regex.cpp -vc90/boost_regex-vc90-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/regex_debug.cpp +vc90/boost_regex-vc90-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/regex_debug.cpp -vc90/boost_regex-vc90-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc90/boost_regex-vc90-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc90/boost_regex-vc90-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc90/boost_regex-vc90-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc90/boost_regex-vc90-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/static_mutex.cpp +vc90/boost_regex-vc90-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/static_mutex.cpp -vc90/boost_regex-vc90-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/usinstances.cpp +vc90/boost_regex-vc90-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/usinstances.cpp -vc90/boost_regex-vc90-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/wide_posix_api.cpp +vc90/boost_regex-vc90-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/wide_posix_api.cpp -vc90/boost_regex-vc90-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_46/ -Fdvc90/boost_regex-vc90-mt-1_46.pdb ../src/winstances.cpp +vc90/boost_regex-vc90-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_DYN_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/boost_regex-vc90-mt-1_47/ -Fdvc90/boost_regex-vc90-mt-1_47.pdb ../src/winstances.cpp -boost_regex-vc90-mt-1_46_dir : - @if not exist "vc90\boost_regex-vc90-mt-1_46\$(NULL)" mkdir vc90\boost_regex-vc90-mt-1_46 +boost_regex-vc90-mt-1_47_dir : + @if not exist "vc90\boost_regex-vc90-mt-1_47\$(NULL)" mkdir vc90\boost_regex-vc90-mt-1_47 -boost_regex-vc90-mt-1_46_clean : - del vc90\boost_regex-vc90-mt-1_46\*.obj - del vc90\boost_regex-vc90-mt-1_46\*.idb - del vc90\boost_regex-vc90-mt-1_46\*.exp - del vc90\boost_regex-vc90-mt-1_46\*.pch +boost_regex-vc90-mt-1_47_clean : + del vc90\boost_regex-vc90-mt-1_47\*.obj + del vc90\boost_regex-vc90-mt-1_47\*.idb + del vc90\boost_regex-vc90-mt-1_47\*.exp + del vc90\boost_regex-vc90-mt-1_47\*.pch -./vc90/boost_regex-vc90-mt-1_46.lib : vc90/boost_regex-vc90-mt-1_46/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/cregex.obj vc90/boost_regex-vc90-mt-1_46/fileiter.obj vc90/boost_regex-vc90-mt-1_46/icu.obj vc90/boost_regex-vc90-mt-1_46/instances.obj vc90/boost_regex-vc90-mt-1_46/posix_api.obj vc90/boost_regex-vc90-mt-1_46/regex.obj vc90/boost_regex-vc90-mt-1_46/regex_debug.obj vc90/boost_regex-vc90-mt-1_46/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_46/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_46/static_mutex.obj vc90/boost_regex-vc90-mt-1_46/usinstances.obj vc90/boost_regex-vc90-mt-1_46/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_46/winstances.obj - link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc90/boost_regex-vc90-mt-1_46.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-1_46.dll" /implib:"vc90/boost_regex-vc90-mt-1_46.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-1_46/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/cregex.obj vc90/boost_regex-vc90-mt-1_46/fileiter.obj vc90/boost_regex-vc90-mt-1_46/icu.obj vc90/boost_regex-vc90-mt-1_46/instances.obj vc90/boost_regex-vc90-mt-1_46/posix_api.obj vc90/boost_regex-vc90-mt-1_46/regex.obj vc90/boost_regex-vc90-mt-1_46/regex_debug.obj vc90/boost_regex-vc90-mt-1_46/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_46/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_46/static_mutex.obj vc90/boost_regex-vc90-mt-1_46/usinstances.obj vc90/boost_regex-vc90-mt-1_46/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_46/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_46/winstances.obj +./vc90/boost_regex-vc90-mt-1_47.lib : vc90/boost_regex-vc90-mt-1_47/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_47/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_47/cregex.obj vc90/boost_regex-vc90-mt-1_47/fileiter.obj vc90/boost_regex-vc90-mt-1_47/icu.obj vc90/boost_regex-vc90-mt-1_47/instances.obj vc90/boost_regex-vc90-mt-1_47/posix_api.obj vc90/boost_regex-vc90-mt-1_47/regex.obj vc90/boost_regex-vc90-mt-1_47/regex_debug.obj vc90/boost_regex-vc90-mt-1_47/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_47/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_47/static_mutex.obj vc90/boost_regex-vc90-mt-1_47/usinstances.obj vc90/boost_regex-vc90-mt-1_47/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_47/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_47/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_47/winstances.obj + link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /dll /incremental:yes /pdb:"vc90/boost_regex-vc90-mt-1_47.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-1_47.dll" /implib:"vc90/boost_regex-vc90-mt-1_47.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-1_47/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_47/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_47/cregex.obj vc90/boost_regex-vc90-mt-1_47/fileiter.obj vc90/boost_regex-vc90-mt-1_47/icu.obj vc90/boost_regex-vc90-mt-1_47/instances.obj vc90/boost_regex-vc90-mt-1_47/posix_api.obj vc90/boost_regex-vc90-mt-1_47/regex.obj vc90/boost_regex-vc90-mt-1_47/regex_debug.obj vc90/boost_regex-vc90-mt-1_47/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_47/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_47/static_mutex.obj vc90/boost_regex-vc90-mt-1_47/usinstances.obj vc90/boost_regex-vc90-mt-1_47/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_47/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_47/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-1_46.lib +# section for libboost_regex-vc90-mt-1_47.lib # ######################################################## -vc90/libboost_regex-vc90-mt-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_46/ -Fdvc90/libboost_regex-vc90-mt-1_46.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MD /W3 /EHsc /O2 /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /FD /Zc:wchar_t /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-1_47/ -Fdvc90/libboost_regex-vc90-mt-1_47.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-1_46_dir : - @if not exist "vc90\libboost_regex-vc90-mt-1_46\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-1_46 +libboost_regex-vc90-mt-1_47_dir : + @if not exist "vc90\libboost_regex-vc90-mt-1_47\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-1_47 -libboost_regex-vc90-mt-1_46_clean : - del vc90\libboost_regex-vc90-mt-1_46\*.obj - del vc90\libboost_regex-vc90-mt-1_46\*.idb - del vc90\libboost_regex-vc90-mt-1_46\*.exp - del vc90\libboost_regex-vc90-mt-1_46\*.pch +libboost_regex-vc90-mt-1_47_clean : + del vc90\libboost_regex-vc90-mt-1_47\*.obj + del vc90\libboost_regex-vc90-mt-1_47\*.idb + del vc90\libboost_regex-vc90-mt-1_47\*.exp + del vc90\libboost_regex-vc90-mt-1_47\*.pch -./vc90/libboost_regex-vc90-mt-1_46.lib : vc90/libboost_regex-vc90-mt-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/cregex.obj vc90/libboost_regex-vc90-mt-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-1_46/icu.obj vc90/libboost_regex-vc90-mt-1_46/instances.obj vc90/libboost_regex-vc90-mt-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-1_46/regex.obj vc90/libboost_regex-vc90-mt-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_46/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-1_46.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/cregex.obj vc90/libboost_regex-vc90-mt-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-1_46/icu.obj vc90/libboost_regex-vc90-mt-1_46/instances.obj vc90/libboost_regex-vc90-mt-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-1_46/regex.obj vc90/libboost_regex-vc90-mt-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_46/winstances.obj +./vc90/libboost_regex-vc90-mt-1_47.lib : vc90/libboost_regex-vc90-mt-1_47/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_47/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_47/cregex.obj vc90/libboost_regex-vc90-mt-1_47/fileiter.obj vc90/libboost_regex-vc90-mt-1_47/icu.obj vc90/libboost_regex-vc90-mt-1_47/instances.obj vc90/libboost_regex-vc90-mt-1_47/posix_api.obj vc90/libboost_regex-vc90-mt-1_47/regex.obj vc90/libboost_regex-vc90-mt-1_47/regex_debug.obj vc90/libboost_regex-vc90-mt-1_47/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_47/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_47/static_mutex.obj vc90/libboost_regex-vc90-mt-1_47/usinstances.obj vc90/libboost_regex-vc90-mt-1_47/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_47/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_47/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_47/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-1_47.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-1_47/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_47/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_47/cregex.obj vc90/libboost_regex-vc90-mt-1_47/fileiter.obj vc90/libboost_regex-vc90-mt-1_47/icu.obj vc90/libboost_regex-vc90-mt-1_47/instances.obj vc90/libboost_regex-vc90-mt-1_47/posix_api.obj vc90/libboost_regex-vc90-mt-1_47/regex.obj vc90/libboost_regex-vc90-mt-1_47/regex_debug.obj vc90/libboost_regex-vc90-mt-1_47/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_47/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_47/static_mutex.obj vc90/libboost_regex-vc90-mt-1_47/usinstances.obj vc90/libboost_regex-vc90-mt-1_47/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_47/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_47/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_47/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-gd-1_46.lib +# section for libboost_regex-vc90-mt-gd-1_47.lib # ######################################################## -vc90/libboost_regex-vc90-mt-gd-1_46/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/cregex.obj: ../src/cregex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/icu.obj: ../src/icu.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/icu.obj: ../src/icu.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/instances.obj: ../src/instances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/instances.obj: ../src/instances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/regex.obj: ../src/regex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/regex.obj: ../src/regex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-gd-1_46/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) - cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_46/ -Fdvc90/libboost_regex-vc90-mt-gd-1_46.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-gd-1_47/winstances.obj: ../src/winstances.cpp $(ALL_HEADER) + cl $(INCLUDES) /nologo /MDd /W3 /Gm /EHsc /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /EHsc /c $(CXXFLAGS) $(ICU_COMPILE_OPTS) -Y- -Fo./vc90/libboost_regex-vc90-mt-gd-1_47/ -Fdvc90/libboost_regex-vc90-mt-gd-1_47.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-gd-1_46_dir : - @if not exist "vc90\libboost_regex-vc90-mt-gd-1_46\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-gd-1_46 +libboost_regex-vc90-mt-gd-1_47_dir : + @if not exist "vc90\libboost_regex-vc90-mt-gd-1_47\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-gd-1_47 -libboost_regex-vc90-mt-gd-1_46_clean : - del vc90\libboost_regex-vc90-mt-gd-1_46\*.obj - del vc90\libboost_regex-vc90-mt-gd-1_46\*.idb - del vc90\libboost_regex-vc90-mt-gd-1_46\*.exp - del vc90\libboost_regex-vc90-mt-gd-1_46\*.pch +libboost_regex-vc90-mt-gd-1_47_clean : + del vc90\libboost_regex-vc90-mt-gd-1_47\*.obj + del vc90\libboost_regex-vc90-mt-gd-1_47\*.idb + del vc90\libboost_regex-vc90-mt-gd-1_47\*.exp + del vc90\libboost_regex-vc90-mt-gd-1_47\*.pch -./vc90/libboost_regex-vc90-mt-gd-1_46.lib : vc90/libboost_regex-vc90-mt-gd-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_46/icu.obj vc90/libboost_regex-vc90-mt-gd-1_46/instances.obj vc90/libboost_regex-vc90-mt-gd-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_46/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-gd-1_46.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-gd-1_46/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_46/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_46/icu.obj vc90/libboost_regex-vc90-mt-gd-1_46/instances.obj vc90/libboost_regex-vc90-mt-gd-1_46/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_46/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_46/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_46/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_46/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_46/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_46/winstances.obj +./vc90/libboost_regex-vc90-mt-gd-1_47.lib : vc90/libboost_regex-vc90-mt-gd-1_47/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_47/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_47/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_47/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_47/icu.obj vc90/libboost_regex-vc90-mt-gd-1_47/instances.obj vc90/libboost_regex-vc90-mt-gd-1_47/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_47/regex.obj vc90/libboost_regex-vc90-mt-gd-1_47/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_47/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_47/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_47/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_47/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_47/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_47/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_47/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_47/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-gd-1_47.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-gd-1_47/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_47/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_47/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_47/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_47/icu.obj vc90/libboost_regex-vc90-mt-gd-1_47/instances.obj vc90/libboost_regex-vc90-mt-gd-1_47/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_47/regex.obj vc90/libboost_regex-vc90-mt-gd-1_47/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_47/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_47/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_47/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_47/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_47/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_47/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_47/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_47/winstances.obj From 6ed11d27d790b84b23735530247a771782bc707a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 25 Apr 2011 10:49:26 +0000 Subject: [PATCH 77/77] Pass submatches along to token-iterator constructor. Fixes #5472. [SVN r71478] --- include/boost/regex/v4/u32regex_token_iterator.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/regex/v4/u32regex_token_iterator.hpp b/include/boost/regex/v4/u32regex_token_iterator.hpp index 4b0ac927..de167716 100644 --- a/include/boost/regex/v4/u32regex_token_iterator.hpp +++ b/include/boost/regex/v4/u32regex_token_iterator.hpp @@ -317,14 +317,14 @@ inline u32regex_token_iterator make_u32regex_token_iterator(cons template inline u32regex_token_iterator make_u32regex_token_iterator(const UChar* p, const u32regex& e, const int (&submatch)[N], regex_constants::match_flag_type m = regex_constants::match_default) { - return u32regex_token_iterator(p, p+u_strlen(p), e, m); + return u32regex_token_iterator(p, p+u_strlen(p), e, submatch, m); } #endif template inline u32regex_token_iterator::const_iterator> make_u32regex_token_iterator(const std::basic_string& p, const u32regex& e, const int (&submatch)[N], regex_constants::match_flag_type m = regex_constants::match_default) { typedef typename std::basic_string::const_iterator iter_type; - return u32regex_token_iterator(p.begin(), p.end(), e, m); + return u32regex_token_iterator(p.begin(), p.end(), e, submatch, m); } template inline u32regex_token_iterator make_u32regex_token_iterator(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, const int (&submatch)[N], regex_constants::match_flag_type m = regex_constants::match_default) @@ -354,7 +354,7 @@ template inline u32regex_token_iterator::const_iterator> make_u32regex_token_iterator(const std::basic_string& p, const u32regex& e, const std::vector& submatch, regex_constants::match_flag_type m = regex_constants::match_default) { typedef typename std::basic_string::const_iterator iter_type; - return u32regex_token_iterator(p.begin(), p.end(), e, m); + return u32regex_token_iterator(p.begin(), p.end(), e, submatch, m); } inline u32regex_token_iterator make_u32regex_token_iterator(const U_NAMESPACE_QUALIFIER UnicodeString& s, const u32regex& e, const std::vector& submatch, regex_constants::match_flag_type m = regex_constants::match_default) {